我可以看到有多种方法可以使用Html字符串。在Android strings.xml中使用HTML字符串的最佳方法是什么?我已经提到了以下两种方式:哪一个是优先的,为什么?
<string name="test"><![CDATA[Test Message.<br/><br/>Please contact <a href="mailto:test@test.com" target="_top">test@test.com</a> for more details.</string>
<string name="test">Test Message.<br/><br/>Please contact <a href="mailto:test@test.com" target="_top">test@test.com</a> for more details.</string>
答案 0 :(得分:0)
在你的情况下,你可以这样做
Spanned s = Html.fromHtml(getResources().getString(R.string.test));
textView.setText(s);
和string.xml
<string name="test">
Test Message.
<br/>
<br/>
Please contact
<a href="mailto:test@test.com" target="_top">test@test.com</a>
for more details.
</string>