On Thu, Aug 18, 2011 at 7:05 AM, Dancing Fingers <[email protected]> wrote: > So when do you use the Android parser, that parses stuff like > manifest.xml, as opposed to JAVA parsers.
"the Android parser" is a customized implementation of the XmlPullParser interface, one that can read the "binary XML" the aapt tool creates. You'll only use this parser when reading an XML resource (e.g., getResources().getXml()). -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Warescription: Three Android Books, Plus Updates, One Low Price! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

