@Artoo是正確的,你能做的最好的事情是有你的ListView上面一個TextView,你可以有任何填充添加到它作爲沒有關聯你的ListView。
下面是我的代碼片段。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="20dp"
android:text="I am Header"/>
<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
</ListView>
,這裏是我的輸出。 (我知道它看起來怪異),但它的作品。 :)
如果您需要進一步的幫助,請告訴我。快樂的編碼。 :)
您必須爲ListView項目和標題視圖分開佈局。所以,從ListView中刪除填充並將其移動到項目的佈局和標題的佈局。 –
您能否通過放置圖像來解釋這一點,並在那裏表明究竟是什麼問題? –