Skip to content Skip to sidebar Skip to footer

Reading Local Xml - Source Not Found

I am trying to read a resource of an XML file but I am getting error 'Source Not Found', I am pasting my code beneath, please tell me where I am doing wrong public void ParseXmlFil

Solution 1:

Put the XML in res/raw folder and use db.parse(context.getResources().openRawResource(R.raw.wrist));


Post a Comment for "Reading Local Xml - Source Not Found"