0

私の Android アプリケーションでは、UI を設計する必要があります。スクロールビュー (70%) と相対レイアウト (30%) の領域を線形レイアウト (100%) 内に分散する必要があります。しかし、私のコードでは、スクロールビューのボタンの変更でその領域を変更し、relativelayout の領域を消費します。これが私のコードです

<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="100"     
>
<ScrollView 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_above="@+id/lastLayout"
    android:layout_weight="70"        
    >        
    <LinearLayout   
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/linear_layout_add"
        android:background="@drawable/albumbackground"
        android:padding="10dp"
    >         
    </LinearLayout>
</ScrollView>
<RelativeLayout 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white"
    android:layout_weight="30"
    >

    <ImageButton
        android:id="@+id/albumAdd"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_marginRight="24dp"
        android:layout_marginTop="10dp"
        android:layout_toLeftOf="@+id/albumremove"
        android:src="@drawable/add" />

    <ImageButton
        android:id="@+id/albumremove"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:layout_alignParentRight="true"
        android:layout_marginRight="58dp"
        android:src="@drawable/delete" />

     </RelativeLayout>    

ボタンが少ない場合、UIはこのように表示されます ここに画像の説明を入力

しかし、ボタンの数が増えると、UI は次のように表示されます ここに画像の説明を入力

スクロールビューと相対レイアウトのサイズを一定に保つにはどうすればよいですか? ありがとう...

4

1 に答える 1

0

android:layout_height="0dp"の両方の子に設定しLinearLayoutます。

重みは、未使用のスペースを埋めるためのものです。お子様のサイズが 0 の場合、未使用のスペースは好きなように分割されます。

于 2013-04-07T10:28:23.547 に答える