页脚元素隐藏最后一个listview项

时间:2015-03-14 07:00:50

标签: android listview

我有一个带有viewflipper,listview和页脚元素的布局。每当呈现布局时,页脚元素都会隐藏最后一个listview项。

这是我的xml文件

  <?xml version="1.0" encoding="utf-8"?>
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/sl"
>


    <ViewFlipper

        android:id="@+id/view_flipper"
        android:layout_width="fill_parent"
        android:layout_height="200dp"
        android:layout_alignParentTop="true"
        >

        <RelativeLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"

            >

            <ImageView
                android:id="@+id/frstim"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:src="@drawable/job"

                android:adjustViewBounds="true"
                android:scaleType="fitXY"
                />

   </RelativeLayout>

        <RelativeLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"

            >

            <ImageView
                android:id="@+id/scndim"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:src="@drawable/bg"

                android:adjustViewBounds="true"
                android:scaleType="fitXY"
                />


        </RelativeLayout>

        <RelativeLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"

            >

            <ImageView
                android:id="@+id/thrdima"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:src="@drawable/job"

                android:adjustViewBounds="true"
                android:scaleType="fitXY"
                />


        </RelativeLayout>

        <RelativeLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"

            >

            <ImageView
                android:id="@+id/furima"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"

                android:adjustViewBounds="true"
                android:scaleType="fitXY"
                android:src="@drawable/job"
                />


        </RelativeLayout>
    </ViewFlipper>





<ListView
    android:id="@+id/listview"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/view_flipper"
    />

<RelativeLayout
    android:background="@drawable/cell_shape"
    android:padding="2dp"
    android:layout_width="fill_parent"
    android:layout_height="100dp"
    android:layout_alignParentBottom="true"


    >
    <ImageView
        android:id="@+id/trus"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:src="@drawable/trus"

        android:layout_alignParentLeft="true"
        />
    <ImageView
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:src="@drawable/fdelv"
        android:layout_centerInParent="true"
        />
    <ImageView
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:src="@drawable/csd"
        android:layout_alignParentRight="true"
        />


</RelativeLayout>

</RelativeLayout>

请指出错误的地方

1 个答案:

答案 0 :(得分:0)

只需添加以下属性

即可
android:layout_below="@+id/...."
android:layout_above="@+id/..."