Listview,Header与listview重叠

时间:2014-07-16 13:44:52

标签: android android-listview

我有一个带有标题的Listview,在它下面是一个粘性标题,然后是一个列表。

这就是它的样子:

enter image description here

当我向下滚动时,这就是它的样子:

enter image description here

如您所见,箭头与列表重叠。这就是我想要的效果。 我试图在粘性标题布局上设置负填充,但这不起作用。

粘性标题的布局:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:id="@+id/root"
   android:orientation="vertical"
   android:paddingBottom="-10dp">

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/view_dropshadow"
    android:paddingBottom="6dp"
    android:paddingLeft="10dp"
    android:paddingTop="2dp">

    <TextView
        android:id="@+id/tv_around_here"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/properties_around_location"
        android:textColor="@android:color/white" />

    <LinearLayout
        android:id="@+id/back_to_top_container"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:orientation="horizontal"
        android:paddingLeft="20dp"
        android:paddingRight="5dp">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginRight="2dp"
            android:text="Terug naar top"
            android:textColor="@android:color/white" />

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="15dp"
            android:layout_gravity="center_vertical"
            android:src="@drawable/ic_go_to_top" />

    </LinearLayout>

</RelativeLayout>

<View
    android:layout_width="25dp"
    android:layout_height="15dp"
    android:layout_marginLeft="8dp"
    android:layout_marginTop="-6dp"
    android:background="@drawable/indicator_arrow" />

0 个答案:

没有答案