是否可以在不将边距应用于标题的情况下为 ListView 设置边距/填充?我希望我的 ListView 类似于 Google Now 布局。除了这个小问题,我已经完成了所有工作。
问题:是否可以不将 ListView 的布局参数应用于其标题?
EDIT1:更多信息
紫色视图是 listView 的标题。我尝试在列表项布局中添加边距。这也不起作用。我需要的只是一种将边距应用于列表视图的方法,以便它不会将边距应用于列表视图中的标题。
EDIT2:我的布局 header.xml
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:orientation="vertical" >
<View
android:layout_width="match_parent"
android:layout_height="@dimen/top_height"
android:background="@color/top_item" />
<View
android:id="@+id/placeholder"
android:layout_width="match_parent"
android:layout_height="@dimen/sticky_height"
android:layout_gravity="bottom" />
</FrameLayout>
root_list.xml
<LinearLayout>
<com.test.CustomListView
android:id="@android:id/list"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_height="wrap_content" /></LinearLayout>
list_item.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/card_background"
android:orientation="vertical" >
<TextView
android:id="@+id/textview_note"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/textview_note_date"
android:layout_width="match_parent"
android:layout_height="wrap_content"/></LinearLayout>
由于这篇文章的长度,我在这里删除了无用的布局属性。