TableLayout
包含方便的属性android:stretchColumns="*"
,可以在表格大小上均匀分配列宽。可以为行做同样的事吗?
答案 0 :(得分:1)
TableLayout
扩展了LinearLayout
,因此您只需定义TableRows
即可:
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="0"
android:layout_weight="1"/>