Sambhaji kokate
Newbie
I have following code in resources/arrays.xml file
<resources>
<string-array name="myarray">
<item>Physical World \n What Is Physics</item>
<item><b>Scope And Excitement Of Physics</b></item>
<item><b>Physics,Technology And Society</b></item>
</resources>
to access myarray we can use
String[] str = getResources().getStringArray()(R.arrays.myarray);
but this array contains html tags like <b></b>,<u></u>. how should i access this array?
<resources>
<string-array name="myarray">
<item>Physical World \n What Is Physics</item>
<item><b>Scope And Excitement Of Physics</b></item>
<item><b>Physics,Technology And Society</b></item>
</resources>
to access myarray we can use
String[] str = getResources().getStringArray()(R.arrays.myarray);
but this array contains html tags like <b></b>,<u></u>. how should i access this array?
