我有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>
我怎样才能实现这一目标?我需要在这里使用适配器吗?如果是这样,哪种情况最适合这种情况?
答案 0 :(得分:0)
对此列表视图使用页眉/页脚视图。