如何在android中的textview上获取htmltext值?

时间:2010-01-27 13:15:41

标签: android

  

可能重复:
  How to display HTML in TextView?

我有一个包含一些标签的字符串(<p><img>等)。

说明如何在textview中处理这些标记。

提前致谢。

1 个答案:

答案 0 :(得分:5)

textView.setText(Html.fromHtml("<p>" + title + "</p>");

您还可以使用网络视图

WebView webview = new WebView(this);
 setContentView(webview);

 // Simplest usage: note that an exception will NOT be thrown
 // if there is an error loading this page (see below).
 webview.loadUrl("http://slashdot.org/");

 // Of course you can also load from any string:
 String summary = "<html><body>You scored <b>192 points.</body></html>";
 webview.loadData(summary, "text/html", "utf-8");

http://developer.android.com/reference/android/webkit/WebView.html