美文网首页
富文本,里面加入\n 换行符之后,Html.fromHtml不能

富文本,里面加入\n 换行符之后,Html.fromHtml不能

作者: Moosen | 来源:发表于2020-08-29 14:12 被阅读0次

    背景:
    需要文本中部分颜色显示为其它颜色,然后其中又分行,我们首先想到的是直接拼接富文本。

                String strEmail = "<font color='#FA670A'>" + email + "</font>";
                String str = getString(R.string.txt_email_sent_tips, strEmail);
                String replace = str.replace("\n", "<br>");
                tvSentTip.setText(Html.fromHtml(replace));
    

    其中只需要把 \n 替换成<br>就可以解决了,分行无效的问题。

                String replace = str.replace("\n", "<br>");
    

    相关文章

      网友评论

          本文标题:富文本,里面加入\n 换行符之后,Html.fromHtml不能

          本文链接:https://www.haomeiwen.com/subject/wrtjsktx.html