我是Android新手。請幫幫我。我有兩個字符串數組如下:Android - 字符串數組到ListView
String[] Array1 = {"ele1", "ele2", "ele3", "ele4", "ele5", "ele6"};
String[] Array2 = {"obj1", "obj2", "obj3", "obj4", "obj5", "obj6"};
我在我的佈局如下列表視圖:
<ListView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/lytlistView"
android:layout_marginTop="4dp"
android:layout_marginLeft="6dp"
android:layout_marginRight="6dp"
android:layout_below="@+id/lytListView">
</ListView>
現在,我要爲ListView控件添加兩個字符串數組的值顯示在下面:
-------------------------
listHeader1
listContent1
-------------------------
listHeader2
listContent2
-------------------------
listHeader3
listContent3
-------------------------
所以,listHeader[1,2,3,..]
包含Array1[]
元素和listContent[1,2,3,....]
包含Array2[]
元素
我該如何做到這一點?請幫幫我。
您需要使用hashmap進行映射。 – Unknown 2013-04-29 05:50:52
使用自定義列表視圖http://techdroid.kbeanie.com/2009/07/custom-listview-for-android.html – rajeshwaran 2013-04-29 05:52:32
嘗試閱讀[本博客文章](http ://bartinger.at/listview-with-sectionsseparators/)關於分段列表視圖 – thepoosh 2013-04-29 06:04:17