Is it possible to get string from string-array in xml file? I need to a string not string-array :)
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 Jul 1 at 10:55