如何在Android中为TextView动态设置颜色

时间:2017-10-04 12:41:26

标签: java android textview

在我的应用程序中,我希望在TextView中显示一些文字,然后从服务器中获取文字
我应该在XML布局中只使用一个textView,我应该为文本设置颜色
我的XML:

<TextView
    android:id="@+id/rowExplore_userName"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="@dimen/size3"
    android:layout_marginTop="@dimen/padding8"
    android:layout_toRightOf="@+id/rowExplore_imageCard"
    android:fontFamily="sans-serif"
    android:gravity="left|center_vertical"
    android:text="Adam"
    android:textColor="@color/colorPrimary"
    android:textSize="@dimen/font14" />

JSON:

  "name": "Adam Sandel",
  "info": "liked",
  "movieName": "SpiderMan",

Java代码:

rowExplore_userName.setText(response.getName() + response.getInfo() + response.getMovieName() );

我想动态设置颜色,如下图: enter image description here

我该怎么办?请帮帮我

5 个答案:

答案 0 :(得分:2)

您可以使用HTML

String text = "<font color=#cc0029>First Color</font> <font color=#ffcc00>Second Color</font>";
yourtextview.setText(Html.fromHtml(text));

答案 1 :(得分:0)

更好的方法是使用适当的HTML标记创建字符串资源:

<string name="html_string" formatted="false">
    <![CDATA[
       <font color="yellow">%s</font> %s <font color="yellow">%s</font>
    ]]>
</string>

然后用资源获取该字符串:

String htmlString = getString(R.strings.html_string, response.getName(), response.getInfo(), response.getMovieName());
rowExplore_userName.setText(htmlString);

答案 2 :(得分:0)

我使用了这段代码:

String colorStr="#FFFFFF" //put your hex color 
int color =  Color.parseColor(colorStr);
editText.setTextColor(color);

答案 3 :(得分:0)

如果您想避免使用HTML标记,可以使用SpannableString

TextView textview = (TextView)findViewById(R.id.textview);

Spannable wordToSpan = new SpannableString("Your text is here");        
wordToSpan.setSpan(new ForegroundColorSpan(Color.BLUE), indexStart, indexEnd, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

textView.setText(wordToSpan);

并且它更灵活,因为您可以对文本进行更多更改(文本大小,粗体/斜体等)

答案 4 :(得分:0)

我会采用另一种方法来创建一个方法

 public String getColoredString(String pname) {
    Random rnd = new Random();
    int color = Color.argb(255, rnd.nextInt(256), rnd.nextInt(256), rnd.nextInt(256));
    Spannable wordToSpan = new SpannableString(pname);
    wordToSpan.setSpan(new ForegroundColorSpan(color), 0, pname.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
    return wordToSpan.toString();
}

并使用上述方法

rowExplore_userName.setText(getColoredString(response.getName())+getColoredString(response.getInfo())+getColoredString(response.getMovieName()));

这应该有效。