我偶然發現了一個問題,我無法理解我的頭,所以我希望也許有人在這裏有同樣的問題或知道解決問題的好方法。在列表視圖中使用行更多視圖陣列適配器
我創建了一個包含ListView的視圖。這個ListView包含兩個TextView。 問題是,我不知道我發送的數據是在哪裏使用ArrayAdapter在第二個文本視圖中發送的。有沒有辦法發送更多的信息給ArrayAdapter,以便我可以提供「todaysmenu」TextView?
一個ArrayAdapter方法:
private void createList() {
ListView lv = (ListView) findViewById(R.id.mylist);
String[] values = new String[] { "Android", "Linux", "OSX",
"WebOS", "Windows7", "Ubuntu", "OS/2"
};
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,R.layout.rowlayout, R.id.restaurantname, values);
lv.setAdapter(adapter);
}
行標記:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/restaurantname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@+id/restaurantname"
android:textSize="23dp" >
</TextView>
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@+id/todaysmenu" />
</LinearLayout>
活動佈局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/mylist"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</ListView>
</LinearLayout>
在我得到的一切工作的開始,但是當我加入第二個textfield問題引起了。提前,謝謝你的幫助!
謝謝。這有幫助!謝謝。 – olovholm 2012-07-31 16:42:51