ANDROID:将自定义视图添加到网格视图

时间:2012-09-28 11:26:26

标签: android

在我的android中,我有列表,每个列表项都会显示三个GridView。一个GridView显示所有项目及其详细信息,第二个将显示有关该列表的一些操作,然后第三个将显示注销操作。

是否可以实施?如果是,请为我提供实施的最佳方式....

1 个答案:

答案 0 :(得分:0)

如果要在ListView中添加网格,可以选择GridLayout而不是网格视图。 按照xml代码自定义列表视图项。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/whole_row"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >
    <GridLayout
        android:id="@+id/one"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:columnCount="3"
        android:orientation="horizontal"
>    </GridLayout>
 <GridLayout
        android:id="@+id/two"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:columnCount="3"
        android:orientation="horizontal"
>    </GridLayout>
 <GridLayout
        android:id="@+id/three"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:columnCount="3"
        android:orientation="horizontal"
>    </GridLayout>
</LinearLayout>