Android UI布局如何固定底部元素

在开发Android应用中碰到UI布局问题,想实现固定底部控件,虽然设置属性android:layout_alignParentBottom为true,但随着listView元素增加,底部的控件就消失了,

布局如下,EditText和Button是希望固定的控件:

<?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" >
    
    <ListView android:id="@+id/custom_list"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
        
   <EditText android:id="@+id/custom_edit"
       android:layout_width="120dp"
       android:layout_height="60dp"
       android:layout_below="@id/custom_list"
       android:hint="please input text"
       android:maxWidth="120dp"
       android:layout_alignParentBottom="true"/>
   
   <Button android:id="@+id/custom_send"
       android:layout_width="50dp"
       android:layout_height="60dp"
       android:layout_toRightOf="@id/custom_edit"
       android:layout_below="@id/custom_list" 
       android:text="Send"
       android:layout_alignParentBottom="true"/>

</RelativeLayout>


后面发现把底部元素加到线性布局容器中就可以固定,布局如下:

<?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" >
    
    <ListView android:id="@+id/custom_list"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/bottom_panel" />
    
    <LinearLayout android:id="@id/bottom_panel"   
        android:layout_width="fill_parent"   
        android:layout_height="wrap_content"   
        android:orientation="horizontal"  
        android:layout_alignParentBottom="true" >
        
   <EditText android:id="@+id/custom_edit"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:hint="please input text"
       android:maxWidth="150dp"
       android:maxHeight="60dp"
       android:maxLength="1000"
       android:layout_gravity="center_vertical"
       android:layout_weight="1.0" />
   
   <Button android:id="@+id/custom_send"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:text="Send"
       android:gravity="center"
       android:layout_gravity="center_vertical"
       android:layout_weight="3.0" />
    </LinearLayout>

</RelativeLayout>


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值