无法在列表视图ID下面添加textview和按钮

时间:2014-12-03 10:27:47

标签: android android-layout

这是我正在使用的xml代码..现在我想在listview下面添加两个文本视图和一个按钮,而不更改列表视图的高度。

 <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/linearlayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <ListView
            android:id="@+id/orderlist"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:divider="#778899"
            android:dividerHeight="1dp" >
        </ListView>

        <LinearLayout
            android:id="@+id/layout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:orientation="vertical" >

            <include layout="@layout/footer" />
        </LinearLayout>

    </RelativeLayout>

5 个答案:

答案 0 :(得分:1)

这是在我的最后工作。试着这个:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/linearlayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

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

        <TextView
            android:id="@+id/first"
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:textColor="@android:color/white"
            android:background="@android:color/background_dark"
            android:text="First Text" />

        <TextView
            android:id="@+id/sec"
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:layout_below="@id/first"
            android:textColor="@android:color/white"
            android:background="@android:color/background_dark"
            android:text="First Text" />

        <Button
            android:id="@+id/button"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@id/sec"
            android:text="First Text" />
    </RelativeLayout>

    <ListView
        android:id="@+id/orderlist"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/layout"
        android:layout_alignParentLeft="true"
        android:divider="#778899"
        android:dividerHeight="1dp" >
    </ListView>

</RelativeLayout>

答案 1 :(得分:0)

更改listview并在android:layout_above="@+id/layout" controll

中添加listview
<ListView
            android:id="@+id/orderlist"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_above="@+id/layout"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:divider="#778899"
            android:dividerHeight="1dp" >

        </ListView>

答案 2 :(得分:0)

更改列表视图如下

    <ListView
        android:id="@+id/orderlist"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:divider="#778899"
        android:layout_above="@id/layout"
        android:dividerHeight="1dp" >
    </ListView>

答案 3 :(得分:0)

在列表视图中添加android:layout_above="@+id/layout"

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearlayout"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<ListView
    android:id="@+id/orderlist"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_above="@+id/layout"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:divider="#778899"
    android:dividerHeight="1dp" >
</ListView>

<LinearLayout
    android:id="@+id/layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:orientation="vertical" >

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="Total Price : 20.00"
        android:textColor="@android:color/black"
        android:textSize="16sp" >
    </TextView>

    <Button
        android:id="@+id/button1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Buy" />

    <include
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        layout="@layout/footer" />
</LinearLayout>

</RelativeLayout>

答案 4 :(得分:0)

在这种情况下,您还可以根据需要定义组件的参数layout_weight

What does layout weight means?