我正在尝试制作类似于人员应用程序的布局,因此我有一个顶部带有固定标题的列表。我在相对布局内的列表视图顶部定义标题,但列表顶部的“发光效果”仅适用于列表视图,而不是整个布局。
这就是我所拥有的:
这就是我想要的:
这是我的布局文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:id="@+id/header_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:minHeight="20dp"
android:orientation="vertical" >
<TextView
android:id="@+id/status_header"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/last_updated"
android:textSize="12sp"
android:textStyle="bold"
android:textAllCaps="true"
android:gravity="center|left"
android:layout_marginLeft="20dp"
android:layout_marginTop="7dp"
android:layout_marginBottom="7dp"
android:textColor="@color/nice_blue"
/>
<View style="@style/HeaderDivider"/>
</LinearLayout>
<ListView
android:id="@+id/status_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:headerDividersEnabled="false"
android:footerDividersEnabled="false"
android:layout_below="@+id/header_layout" >
</ListView>