You should try looking around the reference docs or searching for html.. http://developer.android.com/reference/android/text/Html.html
import android.text.Html; (example turning raw html into a html enabled text view) synopsis = (TextView) findViewById(R.id.synopsis); synopsis.setText(Html.fromHtml(disc.getSynopsis())); On Dec 4, 12:26 am, Samuh <[email protected]> wrote: > Hi, > > I am working on a module that fetches RSS feed, parses it and then > displays selective data in a ListView. The problem is some of the data > received, contain HTML tags and HTML escape sequences which means I > can't display what I get as is. I need to sanitize the string of any > HTML that it might contain. > > Does the android framework provide anything that can help here? If you > have any pointers or links that might help here, I'd be obliged. > > Thanks. -- You received this message because you are subscribed to the Google Groups "Android Beginners" 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-beginners?hl=en

