1

I am parsing an XML file in which certain element having attributes. Is there any way to get the attribute value using methods given in android SAX package?

user594720
  • 449
  • 3
  • 9
  • 18

1 Answers1

2

Here's my real answer. :) You probably meant android.sax.

Then you need to add a StartElementListener and in start() you'll find your Attributes.

Markus
  • 66
  • 3