0

我有并且我用特定SherlockListActivity的项目填写。ListView我用我自己Adapter的。

但在一种情况下,我必须只填写ListView一项在以下指定的项目single_list_item.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="top" >

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="top"
            android:text="@string/singleItem1"/>

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="top"
            android:text="@string/singleItem2"/>

</LinearLayout>

我怎样才能做到这一点?我需要在这里使用适配器吗?如果是这样,哪种情况最适合这种情况?

4

1 回答 1

0

使用此列表视图的页眉/页脚视图。

于 2013-03-18T14:42:48.630 回答