My data in db is stored in html format along with image tags in it. Therefore, when I get data from the database, I remove the html tags and set them to textview. My problem, even after deleting the html tags, a small square field is displayed in the emulator indicating that there is an image. How can I remove these square fields in the emulator, which is an indicator of the image in the html data? Help me with this ...
Thanks in advance
My code is:
textView.setText(Html.fromHtml(htmlString));
source
share