背景:
需要文本中部分颜色显示为其它颜色,然后其中又分行,我们首先想到的是直接拼接富文本。
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>");
网友评论