Read Xml File In Android/mono
I'm trying to read an xml file which I plan to include as part of my mobile application. I've created a folder called 'XML' and added a file called 'test.xml'. The files build acti
Solution 1:
Do you mean that you'd created XML directory inside of your project?
If you want to include XML to your APK - one of the best ways will be to create /res/xml/file.xml and read it inside application with Resources class. Please have a look at this thread - maybe you'll find it helpful. Open XML file from res/xml in Android Good luck
Post a Comment for "Read Xml File In Android/mono"