0
在我的應用程序中,我有1個tablelayout和1個database.Now,我想在表格佈局中顯示該數據庫內容。但它應該看起來像一個listview,因爲我必須顯示下面的條目另一種。可以在表格佈局中使用listview,也可以在表格佈局中設置相應列表視圖中的數據庫條目。Tablelayout中的Listview android
這裏是我的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>
感謝Soumyadip Das.But我的要求是我來顯示錶格式的數據,因爲我必須證明兩個列表像並排結構的一面。 – Prakash 2012-07-07 09:01:06