在我的应用程序中,我有 1 个表格布局和 1 个数据库。现在,我想在表格布局中显示该数据库内容。但它应该看起来像一个列表视图,因为我必须在另一个下方显示条目。是否有可能表格布局中的列表视图,还给出了如何在表格布局中相应的列表视图中设置数据库条目的一些想法。
这是我的 XML 结构:
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="fill_parent" >
<TableLayout
android:id="@+id/tablelayout"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:paddingRight="2dip" >
<TableRow>
<TextView
android_layout_span="2"
android:layout_weight="1"
android:text="Income" />
</TableRow>
<TableRow>
<TextView
android:layout_weight="1"
android:text="Price:"/>
<TextView
android:layout_weight="1"
android:text="Price:" />
<ListView
android:id="@+id/listView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1" >
</ListView>
</TableRow>
<TableRow>
<TextView
android:layout_weight="1"
android:text="Quantity:"/>
<TextView
android:id="@+id/et_url"
android:layout_weight="1"
android:text="Quantity:" />
</TableRow>
</TableLayout>
</ScrollView>