0

私はと持ってRelativeLayoutListViewます:

<?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_messageRelativeLayoutEditTextですButton

問題は、includeリストの下部にあるリストアイテムの上にが表示されることです。リストの下に表示するにはどうすればよいですか?

4

2 に答える 2

1

試しましたandroid:layout_below=""か?

于 2013-01-15T07:47:48.100 に答える
1

あなたはこれを試してみました私はそれがあなたのために働くことを確認しました。

&画像のように表示

ここに画像の説明を入力してください

<?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"
    android:layout_above="@+id/commentFooter"
    android:layout_alignParentTop="true"/>

<include
    android:id="@+id/commentFooter"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"    
    layout="@layout/article_view"
    android:layout_alignParentBottom="true" />

</RelativeLayout>
于 2013-01-15T07:56:46.670 に答える