Java android.util Xml fields, constructors, methods, implement or subclass

Example usage for Java android.util Xml fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for android.util Xml.

The text is from its open source code.

Field

StringFEATURE_RELAXED
org.xmlpull.v1.XmlPullParser "relaxed" feature name.

Method

AttributeSetasAttributeSet(XmlPullParser parser)
Return an AttributeSet interface for use with the given XmlPullParser.
EncodingfindEncodingByName(String encodingName)
Finds an encoding by name.
XmlPullParsernewPullParser()
Returns a new pull parser with namespace support.
XmlSerializernewSerializer()
Creates a new xml serializer.
voidparse(InputStream in, Encoding encoding, ContentHandler contentHandler)
Parses xml from the given input stream and fires events on the given SAX handler.
voidparse(String xml, ContentHandler contentHandler)
Parses the given xml string and fires events on the given SAX handler.
voidparse(Reader in, ContentHandler contentHandler)
Parses xml from the given reader and fires events on the given SAX handler.