EditText出现在listview项目的前面

时间:2013-01-15 07:44:50

标签: android android-layout

我有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的{​​{1}}是RelativeLayoutEditTextButton

问题是include出现在列表底部的列表项上方。如何让它出现在列表下方?

2 个答案:

答案 0 :(得分:1)

您是否尝试过android:layout_below=""

答案 1 :(得分:1)

你试过这个我检查过它适合你。

&安培;显示如图所示

enter image description here

<?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>