为了定义字符串数组,请在资源文件中写入
res / values / filename.xml
<string-array name="string_array_name"> <item>text_string</item> <item>@string/string_id</item> </string-array>
例如
res / values / arrays.xml
<?xml version="1.0" encoding="utf-8"?> <resources> <string-array name="string_array_example"> <item>@string/app_name</item> <item>@string/hello_world</item> </string-array> </resources>
并像这样从Java使用它
String[] strings = getResources().getStringArray(R.array.string_array_example; Log.i("TAG",Arrays.toString(strings)));
输出结果
I/TAG: [HelloWorld, Hello World!]