私はと持ってRelativeLayout
いListView
ます:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:divider="@android:color/transparent"
android:dividerHeight="-1sp"
android:paddingLeft="16dp"
android:paddingRight="16dp"/>
<include
android:id="@+id/commentFooter"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
layout="@layout/post_message" />
</RelativeLayout>
ここで、include
呼び出されるのpost_message
はRelativeLayout
とEditText
ですButton
。
問題は、include
リストの下部にあるリストアイテムの上にが表示されることです。リストの下に表示するにはどうすればよいですか?