I want to add one xml file (which has some static data related to my application) to my Android app. The important thing is that we can't add the data to the string.xml
file.
At the time the application is launched, it should load all static data from the xml file to my data structure.
Problems:
1. How do I add xml to my Android app using Eclipse?
2. Where should I add my custom xml? (inside the values
folder OR res
folder OR anywhere else?)
3. As per my understanding, we have to write an xml parser class for this, is it correct or is there any other way to automatically get the parsed xml value in Android?