我是Android的新手,我想我正在嘗試做一些非常基本的事情:我的數組中有5個字符串(比如'One','Two',.. )。我想將這5個字符串添加到我的listactivity中的列表視圖中。Android:填充列表視圖與數組項目
我的列表:
<ListView
android:id="@+id/android:list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
我的列表行:
<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="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"/>
</LinearLayout>
基本上,我要綁定的數組項的TextView的homeItemName。以後我可能會在我的行中添加其他項目,所以我不能將listview綁定到條目。
謝謝!
您需要Adapters和ArrayAdapters的基本知識。 您可能需要擴展其中的一個類。 – daliz 2010-03-07 00:43:44