我正在学习Android中的TableLayout,并且在以下布局中,结果会出现一些差异。 我有3个按钮第一排和第二排2个按钮。 以下是代码:
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<TableRow
android:id="@+id/tableRow1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/button2"
android:layout_height="wrap_content"
android:text="Button"
android:layout_weight="1" />
<Button
android:id="@+id/button1"
android:layout_height="wrap_content"
android:text="this Button is big"
android:layout_weight="1" />
<Button
android:id="@+id/button3"
android:layout_height="wrap_content"
android:text="button"
android:layout_weight="1" />
</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/button4"
android:layout_height="wrap_content"
android:text="Button"
android:layout_weight="1" />
<Button
android:id="@+id/button5"
android:layout_height="wrap_content"
android:text="Button"
android:layout_weight="1" />
</TableRow>
</TableLayout>
当中间按钮文字较大时,尽管两个按钮的重量相等,但它们并不相同。 但是,当最后一个按钮的文本增加时,按钮会相等。 请更新中间文字较大时按钮不相等的原因 附上两张图片 感谢
答案 0 :(得分:0)
尝试将每个按钮的layout_width设置为match_parent,同时保持weight = 1. match_parent将告诉按钮消耗尽可能多的空间,而weight确定如何分配该空间。您还应指定按钮文本的截断方式,即单行,椭圆形等。