I\'m writing an app which will read XML from a webservice (probably via kSOAP2). I\'m fairly happy with SAX parsing, as I\'ve done XML parsing iPhone apps.
Unfortu
Create a raw folder under res
Put your XML file in there, eg. testXML.xml:
/res/raw/testXML.xml
You should be able to use your XML parser using that as an inputstream:
Xml.parse(getResources().openRawResource(R.raw.testXML), Xml.Encoding.UTF_8, root.getContentHandler());
Try that.