I want to get the tag inside the xml array like country
, countryCode
, iso2
, iso3
.
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="country_data">
<item>
<country>Afghanistan</country>
<countryCode>93</countryCode>
<iso2>AF</iso2>
<iso3>AFG</iso3>
</item>
<item>
<country>Albania</country>
<countryCode>355</countryCode>
<iso2>AL</iso2>
<iso3>ALB</iso3>
</item>
<item>
<country>Algeria</country>
<countryCode>213</countryCode>
<iso2>DZ</iso2>
<iso3>DZA</iso3>
</item>
<item>
<country>American Samoa</country>
<countryCode>1-684</countryCode>
<iso2>AS</iso2>
<iso3>ASM</iso3>
</item>
<item>
<country>Andorra</country>
<countryCode>376</countryCode>
<iso2>AD</iso2>
<iso3>AND</iso3>
</item>
<item>
<country>Angola</country>
<countryCode>244</countryCode>
<iso2>AO</iso2>
<iso3>AGO</iso3>
</item>
</string-array>
</resources>
I want to get the country
, countryCode
, iso2
and iso3
, all independently, into different ArrayLists(ArrayList country, countryCode, iso2, iso3).
I used XmlPullParserFactory to get the tags from an xml file in the assets folder.
..
Events of XmlPullParser
The next() method of XMLPullParser moves the cursor pointer to the next event. Generally, we use four constants (works as the event) defined in the XMLPullParser interface. These are:
START_TAG
:An XML start tag was read.TEXT
:Text content was read; the text content can be retrieved using the getText() method.END_TAG
: An end tag was read.END_DOCUMENT
:No more events are available...
Android XMLPullParser XML Parsing
The
XMLPullParser
will examine an XML file with a series of events, such as those listed above to parse the XML document.To read and parse the XML data using XMLPullParser in android, we need to create an instance of XMLPullParserFactory, XMLPullParser objects in android applications.
Below is my code for reading and parsing the XML data using XMLPullParser in android applications with XMLPullParserFactory, XMLPullParser and series of events to get the required information from XML objects.
The data is then passed into a BaseAdapter.