Android:使用数组项填充列表视图
我是Android的新手,我认为我正在尝试做一些非常基本的事情:我的数组中有5个字符串(比如“一”,“二”,...)。我想将这 5 个字符串添加到我的列表活动中的列表视图中。
我的列表:
<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>
基本上,我想将 Array 项绑定到 TextView homeItemName。我可能会稍后在我的行中添加其他项目,因此我不能只将列表视图绑定到条目。
谢谢!