Android:垂直拉伸按钮

时间:2011-02-03 19:53:26

标签: android layout button stretch

我有一个应用程序,其中底部并排有两个按钮(在RelativeLayout内的TableLayout中)。这在小屏幕上看起来很好,但在较大的屏幕上,底部留下了一个丑陋的黑色空间。我想垂直扩展按钮以填充空间,但无法弄清楚如何!

我已经包含了下面的代码(为简单起见,删除了RelativeLayout的内容;下面的行为方式与使用它的版本完全相同)

<RelativeLayout android:id="@+id/RelativeLayout01" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    xmlns:android="http://schemas.android.com/apk/res/android">

    <TableLayout android:id="@+id/TableLayout01" android:layout_width="fill_parent" android:layout_height="fill_parent">
        <TableRow android:layout_width="fill_parent" android:layout_height="fill_parent">
            <Button android:layout_width="wrap_content" android:id="@+id/Button01" android:text="@string/Button01" android:layout_weight="50" android:layout_height="fill_parent"></Button>
            <Button android:layout_width="wrap_content" android:id="@+id/Button02" android:text="@string/Button02" android:layout_weight="50" android:layout_height="fill_parent"></Button>
        </TableRow>
    </TableLayout>

</RelativeLayout>

任何人都知道如何拉伸当前版面中的按钮,或者让我更容易做到这一点的不同布局?

谢谢,

2 个答案:

答案 0 :(得分:0)

由于您在相对布局中,您可以不使用属性android:layout_alignParentBottom='true'并强制按钮的下边缘与布局的下边缘对齐?您可以申请底部保证金以留下一些空白。

答案 1 :(得分:0)

经过一些(更多)实验后,事实证明我正在以错误的方式接近这一点。通过删除TableLayout,并用LinearLayout替换它,高度的fill_parent属性开始按预期工作,一切都很好。