我想创建一个包含四列的表,它填满了屏幕的所有宽度。我会根据用户输入放置一些会改变的文本,我希望表中的四列保持相同的宽度,无论我放入哪些文本,我该怎么办?
答案 0 :(得分:1)
在每列中使用layout_width="0dip"
和layout_weight="1"
。
答案 1 :(得分:0)
您可以像这样创建表格布局:
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:stretchColumns="*" >
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" >
<TextView
android:id="@+id/editText2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:longClickable="false"
android:text="sdf" />
<TextView
android:id="@+id/editText4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:text="sdfasdfsdfsdf" />
<TextView
android:id="@+id/editText3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:text="sdsd" />
<TextView
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:text="asdfasdfasdfasf" />
</TableRow>
</TableLayout>