I have some HTML that I'm converting to a Spanned using Html.fromHtml(...), and I have a custom tag that I'm using in it:

<customtag id="1234">

So I've implemented a TagHandler to handle this custom tag, like so:

public void handleTag( boolean opening, String tag, Editable output, XMLReader xmlReader ) {

    if ( tag.equalsIgnoreCase( "customtag" ) ) {

        String id = xmlReader.getProperty( "id" ).toString();
    }
}

In this case I get a SAX exception, as I believe the "id" field is actually an attribute, not a property. However, there isn't a getAttribute() method for XMLReader. So my question is, how do I get the value of the "id" field using this XMLReader? Thanks.

link|improve this question

Where is TagHandler? The usual way to do SAX2 is to use ContentHandlers, no? – Ray Toal Aug 5 '11 at 6:36
TagHandler is used when converting HTML text to Spannable text via Html.fromHtml(String, ImageGetter, TagHandler). It's for handling unknown tags (tags not recognized by TagSoup). – Jason Robinson Aug 5 '11 at 16:13
I see. I just tagged the question with TagSoup so those familiar with this parser can find the question. I do know that in the regular SAX2 parser in the standard Java libraries you just setup ContentHandlers, not TagHandlers, and the startElement callback has the attributes already present. – Ray Toal Aug 5 '11 at 23:43
I had the same problem and when I looked at the Android source code, I saw that the attributes are intentionally not passed. So I replace tags with attributes with other tags which have a specific name. Like <customtag1234> in your case. – vorrtex Sep 6 '11 at 13:33
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.