それぞれの列のタイトルにアイテムを配置したいのですが、これがどうなるか、これを配置する方法はありますか、それとも手動でコーディングする必要がありますか
Name Hotness
Yan 10
私のxmlコード
<TableLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TableRow>
<TextView
android:layout_width="fill_parent" //this is my column 1 which Name
android:layout_weight="1"
android:layout_height="fill_parent"
android:text="Names" >
</TextView>
<TextView
android:layout_width="fill_parent" //the column 2 which is Hotness
android:layout_weight="1"
android:layout_height="fill_parent"
android:text="Hotness" >
</TextView>
</TableRow>
</TableLayout>
<TextView
android:id="@+id/tvSqlInfo" //to save on the database
android:layout_width="fill_parent"
android:layout_weight="1"
android:layout_height="fill_parent"
android:text="get info" >
</TextView>
</LinearLayout>