Android tutorial - Android xmlpullparser | xmlpullparser - android app development - android studio - android development tutorial
What is XMLPullParser?
- Android recommends to use XMLPullParser to parse the xml file than SAX and DOM because it is fast.
- The org.xmlpull.v1.XmlPullParser interface provides the functionality to parse the XML document using XMLPullParser.
- XML Pull Parser is an interface that defines parsing functionality provided in XMLPULL V1 API.
- There are following different kinds of parser depending on which features are set:
- non-validating parser as defined in XML 1.0 spec when FEATURE_PROCESS_DOCDECL is set to true
- validating parser as defined in XML 1.0 spec when FEATURE_VALIDATION is true (and that implies that FEATURE_PROCESS_DOCDECL is true)
- when FEATURE_PROCESS_DOCDECL is false (this is default and if different value is required necessary must be changed before parsing is started) then parser behaves like XML 1.0 compliant non-validating parser under condition that no DOCDECL is present in XML documents (internal entites can still be defined with defineEntityReplacementText()). This mode of operation is intended for operation in constrained environments such as J2ME.
- There are two key methods: next() and nextToken(). While next() provides access to high level parsing events, nextToken() allows access to lower level tokens.
- The current event state of the parser can be determined by calling the getEventType() method. Initially, the parser is in the START_DOCUMENT state.
- The method next() advances the parser to the next event. The int value returned from next determines the current parser state and is identical to the value returned from following calls to getEventType ().
Events of XmlPullParser
- 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.
- 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
Example of android XMLPullParser
activity_main.xml
- Drag the one listview from the pallete. Now the activity_main.xml file will look like this:
- File: activity_main.xml
xml document
- Create an xml file named employees.xml inside the assets directory of your project.
- File: employees.xml
Employee class
- Now create the Employee class that corresponds to the xml file.
- File: Employee.java
XMLPullParserHandler class
- Now write the code to parse the xml file using XMLPullParser. Here, we are returning all the employee in list.
- File: XMLPullParserHandler.java
MainActivity class
- Now, write the code to display the list data in the ListView.
- File: MainActivity.java