0

2つのレイアウトがあります。実際には、5、3が上下に並んでいて、真ん中に2つのレイアウトが並んでいます。サイズを固定する必要があるので、変更されます。しかし、下の写真にあるように、ボタンを1つ配置するとすぐに、サイズが変わります。それらを変更しないようにするにはどうすればよいですか?とにかく、これが私のコードと写真です。

レイアウト1 レイアウト2

<?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="vertical"
    android:weightSum="20" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_weight="3" >
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="15"
        android:orientation="horizontal" >

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:layout_weight="1" >
        </LinearLayout>

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:layout_weight="1" >
        </LinearLayout>

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_weight="2" >
    </LinearLayout>

</LinearLayout>
4

2 に答える 2

1

2 つの内部レイアウトを次のように変更してみてください。

オプション #1 : これにより、レイアウトが垂直方向ではなく水平方向に修正されます

<LinearLayout
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:layout_weight="50" >
</LinearLayout>

<LinearLayout
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:layout_weight="50" >
 </LinearLayout>

オプション #2 : これにより、両方向のレイアウトが修正されます

LinearLayoutsネストされたウェイトを使用するのは非常に非効率的です。代わりに、ルート ビューを a に変更しRelativeLayout、重みを取り除きます。これは 100% 完全な解決策ではないことに注意してください。これにより、最初LinearLayoutがレイアウトの上部に配置され、最後LinearLayoutがレイアウトの下部に配置されます。中央のものは常に上面図の下と下面図の下になります。

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

    <LinearLayout android:id="@+id/top"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:orientation="vertical">
    </LinearLayout>

    <LinearLayout android:id="@+id/middle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/top"
        android:layout_above="@+id/bottom"
        android:orientation="horizontal" >

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:layout_weight="1" >
        </LinearLayout>

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:orientation="vertical">
        </LinearLayout>

    </LinearLayout>

    <LinearLayout android:id="@+id/bottom"
        android:layout_alignParentBottom="true"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
    </LinearLayout>
</RelativeLayout>
于 2013-03-18T13:43:42.790 に答える
0

中間線形レイアウトの両方の子線形レイアウトの layout_weight を 0.5 に変更してみてください。

于 2013-03-18T14:08:46.473 に答える