I am working on a Android application that receives response from .Net Webservice as XML.
Sample XML:
<?xml version="1.0" encoding="utf-8" ?><NewDataSet>
<Table>
<Area> Area A </Area>
<code>100000</code>
</Table>
<Table>
<Area>Area B </Area>
<code>100001</code>
</Table>
</NewDataSet>
I need to parse this Xml into listview in next activity.
Can someone please guide me how to do this.
Thanks in Advance.