在很多时候,在我们项目里需要用到在一个TextView中要显示不同颜色的文字
private Spanned colorText(String text) { return Html.fromHtml(String.format("<font color=‘#ff989e‘>%1$s</font>", text));}//设置文字textView.setText("01234")textView.append(colorText("56789"));这样就会在一个textView中显示两种颜色的文字了
时间: 2024-11-03 01:18:30