How to skip image tag in html data in android?
Posted
by
user1448108
on Stack Overflow
See other posts from Stack Overflow
or by user1448108
Published on 2012-06-24T15:06:46Z
Indexed on
2012/06/24
15:15 UTC
Read the original article
Hit count: 133
android
My data in db is stored in html format along with image tags in it. So when I am getting the data from database I am removing the html tags and setting it to textview. My problem is even after removing the html tags, there is a small square box displaying in the emulator indicating that there is some image. How can I remove those square box in emulator which is an indication of image in that html data? Help me regarding this...
Thanks in advance
My Code:
textView.setText(Html.fromHtml(htmlString));
© Stack Overflow or respective owner