可能重複:
How to display HTML in TextView?如何在android中的textview上獲取htmltext的值?
我有一個包含一些標記的字符串(<p>
,<img>
等)。
請教如何在textview中處理這些標籤。
在此先感謝。
可能重複:
How to display HTML in TextView?如何在android中的textview上獲取htmltext的值?
我有一個包含一些標記的字符串(<p>
,<img>
等)。
請教如何在textview中處理這些標籤。
在此先感謝。
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
嘿,我在問TextViews ..... – 2010-01-28 17:04:47
Html.fromHtml()無法正常工作。標籤仍然按照原樣顯示 – 2010-01-28 17:05:54
檢查出工作示例http://javatechig.com/2013/04/07/how-to-display- html-in-android-view/ – 2013-04-07 20:27:36