阅读805 返回首页    go 阿里云 go 技术社区[云栖]


Android: html in strings.xml

原文:https://stackoverflow.com/questions/13425002/android-html-in-strings-xml




The best way to add html source code in strings.xml is to use <![CDATA[html source code]]>. Here is an example:

<string name="html"><![CDATA[<p>Text<p>]]></string> 

Then you can display this html in TextView using:

myTextView.setText(Html.fromHtml(getString(R.string.html)));

If you have links in your html and you want them to be clickable, use this method:

myTextView.setMovementMethod(LinkMovementMethod.getInstance());

最后更新:2017-04-03 16:48:33

  上一篇:go 【OpenHW参赛手记】AXI-Stream接口开发详细流程
  下一篇:go Android 开机图片/文字/动画 修改