これらは仕様です:
- OS: Windows 7 プロフェッショナル x86
- IDE: Eclipse Juno 4.2 (Java 開発者向け)
- ADT: バージョン 20
- SDK: 7
XML レイアウトを作成しています。ImageView を FrameLayout にドラッグすると、すべて期待どおりに機能します。
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:android1="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageView
android1:id="@+id/imageView1"
android1:layout_width="wrap_content"
android1:layout_height="wrap_content"
android1:src="@drawable/logo_splashcreen" />
</FrameLayout>
私が気づいたのは、android1
の代わりに使用していることですandroid
。
ImageView に新しいパラメーターを追加しようとするとCtrl+Space
、エラーがスローされます。
それは正常ですか?前に私に起こったことはありません...