Android中定义和使用 数组
XML 新建arrays.xml文件
<resources>
<string-array name="colors">
<item>red</item>
<item>orange</item>
<item>yellow</item>
<item>green</item>
<item>blue</item>
</string-array>
</resources>
java 调用
Resources res = this.getResources();
String[] arr = res.getStringArray(R.array.colors);
for(int i=0; i<arr.length-1; i++) {
Log.i("TEST", arr[i]);
}