Android:为什么同等重量的按钮具有不同的宽度?

时间:2012-12-20 16:56:29

标签: android android-layout

考虑以下代码和输出:

<?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>

enter image description here

按钮的标注为layout_weight,但宽度不同。为什么他们没有占据相同的宽度?我该怎么做才能使它们具有相等的宽度(不给出像素值)?

2 个答案:

答案 0 :(得分:3)

layout_width更改为0dip将解决问题。

有关其工作原因或使用原因的详细信息,请查看此explanation

很高兴它有所帮助。

答案 1 :(得分:2)

您可以将layout_width设置为0dip,但如果文字太长则不会很好。