tags:

views:

1312

answers:

1

How can I parse my local XML file located in my android project (inside res/XML folder) and want to get the values in that file.

+3  A: 

To access XML resources stored in res/xml, call getResources().getXml() from any Activity or other Context. You need to supply to getXml() the ID of the XML to load (R.xml.myfile).

CommonsWare
The getXml() method automatically returns you an XmlResourceParser implementation instance, so you can directly pass it to XmlPullParser and start parsing your data.
Dimitar Dimitrov