-2
是否可以從xml文件中的字符串數組獲取字符串? 我需要一個字符串不串陣:)如何從strings.xml中的字符串數組獲取字符串
的strings.xml
<string-array name="link_categories">
<item>http://google.com</item>
<item>http://yahoo.com</item>
</string-array>
Brabra.java
WebPageCurrent = getResources().getString(get string from string array);
爲什麼你不能只是在數組中的索引? '.getResources()。getStringArray(R.array.link_cetagories)[0]' – daentech