XmlPullParser
XML Pull Parser is an interface that defines parsing functionality.
Basically used methods & Events in parsing:
next: provides access to high level parsing events.
nextToken(): provides access to lower level tokens.
getEventType(): determine current event state of the parser.
getName(): provide the tag name of current event.
Various Event types [that comes a output of getEventType() or next()]
START_DOCUMENT: Starting of Document.
END_DOCUMENT: End of Document.
START_TAG: Starting of Tag (e.g.
END_TAG: End of Tag (e.g. )
TEXT: State in between of Start Tag & End Tag.
Detailed Info: XmlPullParser