我有并且我用特定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>
我怎样才能做到这一点?我需要在这里使用适配器吗?如果是这样,哪种情况最适合这种情况?