如何在网格行中使用复杂的布局

时间:2012-02-17 11:14:50

标签: android layout layout-inflater

我在resultlookup.xml中有以下代码

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical" android:id="@+id/layoutResultOuter"
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:padding="5dp">
    <TextView
            android:id="@+id/txtResultLeadCode"
            style="@android:style/TextAppearance.Large"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:text="ID" />
    <LinearLayout android:orientation="horizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >
        <TextView
                android:id="@+id/txtResultFirstName"
                style="@android:style/TextAppearance.Small"
                android:singleLine="true"  android:text="First Name" 
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"/>
        <TextView
                android:id="@+id/txtResultspace"
                style="@android:style/TextAppearance.Small"
                android:singleLine="true"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text=" " />
        <TextView
                android:id="@+id/txtResultLastName"
                style="@android:style/TextAppearance.Small"
                android:singleLine="true" android:text="Last Name" 
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
    </LinearLayout>
</LinearLayout>

现在,我希望在网格视图中使用此布局,作为其中一行。网格是单列网格。

数据存储在SQLite DB中,我检索数据并且必须以网格格式显示它。

阅读一些我可以使用“View Inflater”或“Layout Inflater”的地方。如果有任何示例代码,请告诉我。

我想要这样的事情:

resultant image

2 个答案:

答案 0 :(得分:1)

我认为你可以简单地使用<include>标签。 Here's你是怎么做到的。

答案 1 :(得分:0)

通过使用自定义适配器,您可以使用自己的布局来填充GridView中的项目。

使用上面的布局作为项目并在getView()方法中对其进行膨胀它将正常工作..

检查一次:custom adapter for grid view