我该怎么做?
<string-array name="@string/a_string_from_resources">
是否可以使用字符串Resource命名字符串数组?
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="@string/a_string_from_resources">
<item>first</item>
<item>second</item>
<item>third</item>
<item>fourth</item>
<item>fifth</item>
</string-array>
</resources>
答案 0 :(得分:0)
<string-array name="array_name">
答案 1 :(得分:0)
我猜你不能!因为R.java是同时从所有资源生成的。由于xmls在生成之前毫无意义,因此资源文件将无法从自身收集资源。