2

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の指示に従おうとしましたが、あまり役に立ちませんでした

4

2 に答える 2

0

5行目のXMLファイルにエラーがあります

android:layout_height="match_parent""

""属性値は、の代わりにで終わります"

于 2012-06-23T16:05:24.373 に答える
0

グリッド ビューを使用するはずでしたが、代わりに GridLayout を使用しています。このブログ投稿を試してください: http://www.java-samples.com/showtutorial.php?tutorialid=1518

ところであなたのはR.id.grid_viewどこですか?xml に grid_view のような名前がありません。

于 2012-06-23T16:11:36.827 に答える