Image In Html Of Textview Not Being Displayed Properly
I have a TextView which I place into an AlertDialog like this: final TextView textView = new TextView(this); textView.setText(Html.fromHtml(getString(R.string.alert_quickhints_html
Solution 1:
Android TextView
supports only limited set of HTML tags and <img>
is definitely not one of them. If you really need to show complex html within a dialog, use WebView.
UPD
Actually I was wrong, <img>
is kinda supported. Use Html.fromHtml(String source, Html.ImageGetter imageGetter, Html.TagHandler tagHandler) method (note imageGetter parameter), to supply images for your html.
Post a Comment for "Image In Html Of Textview Not Being Displayed Properly"