Android中html.fromhtml的使用方法
更新时间:2017年01月24日 09:51:18 投稿:lqh
这篇文章主要介绍了Android中html.fromhtml的使用方法的相关资料,需要的朋友可以参考下
Android中html.fromhtml
在android中,有一个容易遗忘的Html.fromhtml方法,意思是可以将比如文本 框中的字符串进行HTML格式化,支持的还是很多的,
但要注意的是要在string.xml中用<!--cdata-->去转义,比如:
<string name="htmlFormattedText"> <![CDATA[ Text with markup for [b]bold[/b] and [i]italic[/i] text. There is also support for a <tt>teletype-style</tt> font. But no use for the <code>code</code> tag! ]]></string>
上面就用到了大量的HTML标签了,JAVA代码中这样使用:
TextView view = (TextView)findViewById(R.id.sampleText); String formattedText = getString(R.string.htmlFormattedText); Spanned result = Html.fromHtml(formattedText); view.setText(result);
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
您可能感兴趣的文章:
相关文章
Android中pendingIntent与Intent的深入分析
这篇文章主要介绍了Android中pendingIntent的深入分析的相关资料,需要的朋友可以参考下2017-04-04Android神兵利器之Image Asset Studio的实现
这篇文章主要介绍了Android神兵利器之Image Asset Studio的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-06-06
最新评论