考虑以下代码和输出:
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TableRow>
<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="ABCDE" />
<Button
android:id="@+id/button2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="A" />
<Button
android:id="@+id/button3"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="ABC" />
</TableRow>
</TableLayout>
按钮的标注为layout_weight
,但宽度不同。为什么他们没有占据相同的宽度?我该怎么做才能使它们具有相等的宽度(不给出像素值)?
答案 0 :(得分:3)
答案 1 :(得分:2)
您可以将layout_width
设置为0dip
,但如果文字太长则不会很好。