我正在尝试填充列表,我的问题是如何将列表行与多个项绑定。到目前为止,我有:
String[] homeLists = getResources().getStringArray(R.array.homeItems);
setListAdapter(new ArrayAdapter<String>(this, R.layout.home_item, R.id.homeItemName, homeLists));
home_item看起来像这样:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView android:id="@+id/homeItemName"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp"
android:textSize="16sp"/>
如果我添加另一个TextView说“homeItemDec”,我如何在setListAdapter调用中绑定homeItemName和homeItemDesc?