如何在android中的textview上获取一个值作为htmltext? [复制]
Posted
技术标签:
【中文标题】如何在android中的textview上获取一个值作为htmltext? [复制]【英文标题】:how to get a value as htmltext on textview in android? [duplicate] 【发布时间】:2011-01-09 23:06:03 【问题描述】:可能重复:How to display html in TextView?
我有一个包含一些标签的字符串(<p>
、<img>
等)。
告诉如何在 textview 中处理这些标签。
提前致谢。
【问题讨论】:
查看工作示例javatechig.com/2013/04/07/how-to-display-html-in-android-view 【参考方案1】: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..... Html.fromHtml() 无法正常工作。标签仍按原样显示以上是关于如何在android中的textview上获取一个值作为htmltext? [复制]的主要内容,如果未能解决你的问题,请参考以下文章
如何在Firebase中获取用户数作为计数在android TextView中
在Android中的edittext中从textview获取价值
如何在 Android 上的 textview 或 imageview 上设置涟漪效果?
如何在recyclerview android中的single_row_item的每个视图(imageView,textView)上添加不同的点击事件?