1

有可能在Android中做这样的事情吗?(基本上相当于HTML中的selectand ):option

<ListView android:layout_height="match_parent"
    android:layout_width="match_parent">
        <ListViewItem>TEST</ListViewItem>
        <ListViewItem>TEST1</ListViewItem>
</ListView>

这个我试过了,显然不行。我在网上只能找到有关使用适配器的信息,但由于我有一些硬编码值,我不需要使用适配器——我很乐意将它直接放在 XML 文件中。

这可能吗?

4

2 回答 2

7

1]在strings.xml中创建一个String数组

2 ] 在 Listview 标记 android:entries="@array/your_array_name" 中使用以下属性

完毕 !

于 2014-11-18T07:17:28.773 回答
1

否 在 android 中不可能,但使用android:entries属性使用字符串资源数组加载列表项。

于 2014-11-18T07:20:07.637 回答