其他分享
首页 > 其他分享> > 在android [copy]中相同文本视图中的文本的2种不同颜色

在android [copy]中相同文本视图中的文本的2种不同颜色

作者:互联网

参见英文答案 > Is it possible to have multiple styles inside a TextView?                                    17个
我有一个TextView小部件,如下所示

<TextView 
        android:text="@string/inputText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1" />

inputText在Strings.xml中定义为

<String name="inputText">The value of input is positive now</String>

现在,我希望整个文本以棕色显示,而只有绿色显示“正”.

有没有办法这样做?
简而言之,我的问题是同时对同一文本视图进行多重着色

解决方法:

这是Change text color of one word in a TextView问题的一个共同点.

String first = "This word is ";
String next = "<font color='#EE0000'>red</font>";
t.setText(Html.fromHtml(first + next));

标签:android,textview,textcolor
来源: https://codeday.me/bug/20190711/1435638.html