How to parse local xml in android
Put XML in res folder
/res/raw/kc.xml
then use below mechanism
Xml.parse(getResources().openRawResource(R.raw.kcXML), Xml.Encoding.UTF_8, root.getContentHandler());
Put XML in res folder
/res/raw/kc.xml
then use below mechanism
Xml.parse(getResources().openRawResource(R.raw.kcXML), Xml.Encoding.UTF_8, root.getContentHandler());