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