PS: I forgot to add that after I build this map, I just do the
following to display the text within my TextView:

    // this.section is a String which holds the name of the
    // ebook section that I want to view. It must be a key
    // to the above-mentioned LinkedHashMap containing the
    // epub data.

    // this.view is the TextView object

    // this.text is a String

    this.text = this.itemMap.get(this.section);
    if (this.text != null) {
        this.view.setText(Html.fromHtml(this.text).toString());
    }

-- 
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

Reply via email to