Hi want to get the arraylist from the resources.xml is there any code for this.please give me some suggestions.Thanks in advance
A modification to Klaus' answer, to get an ArrayList:
ArrayList
ArrayList myResArrayList = new ArrayList(); Resources res = getResources(); Collections.addAll(myResArrayList, res.getStringArray(R.array.myResArray));