Android:保持UI大小不变

时间:2013-04-07 10:25:48

标签: android user-interface

在我的Android应用程序中,我必须设计一个UI。我必须在linearlayout(100%)内分配scrollview(70%)和relativelayout(30%)的区域。但是在我的代码中,它通过更改scrollview中的按钮来改变其区域,并消耗相对布局的区域。这是我的代码

<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会显示如下 enter image description here

但是当按钮数量增加时,UI显示如下 enter image description here

如何保持scrollview和relativelayout大小不变?感谢...

1 个答案:

答案 0 :(得分:0)

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

重量是填充未使用的空间。如果您的孩子的大小为0,则未使用的空间将按您的需要进行划分。