如果我在我的 strings.xml 文件中定义了一个字符串数组。
<string-array name="items">
<item >item 1</item>
<item >item 2</item>
<item >item 3</item>
</string-array>
我可以使用引用将其直接插入我的 ListView 吗?
<ListView
android:id="@+id/itemsListView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
- reference to items here >
</ListView>
还是只能在代码中使用适配器?