2x2 フォーメーションで 4 つの imageView を含むビューを作成しようとしています。これは私が念頭に置いていたことです:
<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gridLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:columnCount="2">
<ImageView
android:id="@+id/pic1"
android:layout_row="0"
android:layout_column="0"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingRight="4dip" />
<ImageView
android:id="@+id/pic2"
android:layout_row="1"
android:layout_column="0"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<ImageView
android:id="@+id/pic3"
android:layout_row="0"
android:layout_column="1"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<ImageView
android:id="@+id/pic4"
android:layout_row="1"
android:layout_column="1"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</GridLayout>
私が実行したときのように、これはうまくいかないようです
setContentView(R.layout.grid_view)
次のエラーが表示されます。
Binary XML file line #2: Error inflating class GridLayout
なぜこれが起こっているのか誰にも分かりますか?http://android-developers.blogspot.co.il/2011/11/new-layout-widgets-space-and-gridlayout.htmlの指示に従おうとしましたが、あまり役に立ちませんでした