Android中html.fromhtml Android中html.fromhtml如何使用
人气:0想了解Android中html.fromhtml怎样使用的相关内容吗,在本文为您仔细讲解Android中html.fromhtml的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Android中html.fromhtml,Android中html.fromhtml详解,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);
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
加载全部内容