0

在我的 android 应用程序中,我必须设计一个 UI。我必须在线性布局(100%)内分配滚动视图(70%)和相对布局(30%)的区域。但是在我的代码中,它会随着滚动视图中按钮的变化而改变其区域并消耗相对布局的区域。这是我的代码

<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 显示如下 在此处输入图像描述

但是当按钮的数量增加时,用户界面显示如下 在此处输入图像描述

如何保持滚动视图和相对布局大小不变?谢谢...

4

1 回答 1

0

设置android:layout_height="0dp"在 的两个孩子上LinearLayout

权重用于填充未使用的空间。如果您的孩子的大小为 0,则未使用的空间将按照您的意愿进行划分。

于 2013-04-07T10:28:23.547 回答