0

Eclipse Android:我有 4 个 ImageButtons,然后我想在屏幕的下方以相同宽度的原始按钮使用并一起填充屏幕的宽度。任何人都可以帮我这样做吗?

4

1 回答 1

1

您可以将 LinearLayout 与weightSum=4水平方向一起使用,并将重量为 1 的按钮放入此布局中。这是示例

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:weightSum="4" >

    <Button
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1" />

    <Button
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1" />

    <Button
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1" />

    <Button
        android:layout_width="0dp"
        android:layout_height="wrap_content"
       android:layout_weight="1" />

</LinearLayout>
于 2013-07-26T10:55:54.373 回答