我有一个包含URL的字符串,我想使其变粗。出于某种原因,当我添加粗体标签时 - 文本仍然不会以这种方式出现。
我确信这很简单。有谁知道如何解决这个问题?
示例:
<string name="updated_text">This is sample text. If this doesn’t work, go to<b> <a href="news.google.com">http://news.google.com</a></b> to find more infomation.</string>
答案 0 :(得分:0)
尝试这样,这应该工作
myTextView.setText(Html.fromHtml(getResources().getString(R.string.updated_text)));