我試圖建立和應用,顯示組織的數據,所以我想,基本上是TableLayout
將是一個不錯的主意,只爲讓他們在行,所以我不知道什麼正確的如何做到這一點?我有這個在我的XMLAndroid的 - 列表視圖內tableLayout
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TableLayout
android:id="@+id/tableLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TableRow>
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="@string/hello" >
</TextView>
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="233dp"
android:layout_marginTop="44dp" >
</ListView>
</TableRow>
</TableLayout>
</LinearLayout>
那麼它只是使TableLayout
標籤和TableRow
標籤顯示,上面寫着警告:
"This TableLayout layout or its LinearLayout parent is possibly useless"
所以我的理解是不拾取TableLayout
。我怎樣才能解決這個問題?有沒有另一種方法來做到這一點easly?
哇人,感謝信息,真正有啓發性,我會做到這一點,看看出來,但其他的事情,如果我想添加更多的行後來說從信息在數據庫中,最好以編程方式執行或將佈局設置爲xml文件? – DeX03 2012-02-10 15:17:26
如果你拉出可變數量的行,你別無選擇,只能以編程方式來做(因爲你沒有足夠的,否則你會有多餘的行)。如果你總是有一定數量(即,你有「每頁5個結果」),那麼用XML定義它們,你可以使額外的東西不被用作android:visibility =「gone」。 – Graeme 2012-02-10 15:20:31