在开发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>