コードは です。画像を表示したいです。URLからの画像をAndroid TextViewのHtml.fromHtml()で表示することは可能ですか?
TextView textViewHtml = (TextView) findViewById(R.id.text_html_program);
Spanned spanned = Html.fromHtml("<b>text_html_program: Constructed from HTML programmatically.</b>"
+ " Text with a <a href=\"http://www.google.com\">link</a> "
+"<b><img src=\"http://innovativeprofessionaloffices.com/wp-content/uploads/2014/07/seo-for-small-business.jpg\" alt=\"testing\"></b>"
+ "created in the Java source code using HTML.");
textViewHtml.setText(spanned);
textViewHtml.setMovementMethod(LinkMovementMethod.getInstance());
は、下のリンクを参照してください、これは便利かもしれない - http://stackoverflow.com/questions/15617210/ android-html-fromhtml-with-images/15617341#15617341 – Ragini
@Raginiありがとうございましたありがとうございましたが、TextViewの更新がうまくいきませんでした。 –