有可能在Android中做这样的事情吗?(基本上相当于HTML中的select
and ):option
<ListView android:layout_height="match_parent"
android:layout_width="match_parent">
<ListViewItem>TEST</ListViewItem>
<ListViewItem>TEST1</ListViewItem>
</ListView>
这个我试过了,显然不行。我在网上只能找到有关使用适配器的信息,但由于我有一些硬编码值,我不需要使用适配器——我很乐意将它直接放在 XML 文件中。
这可能吗?