一个TextView中字的颜色不同,怎么设置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一个TextView中字的颜色不同,怎么设置相关的知识,希望对你有一定的参考价值。
参考技术A 请百度Android,SpannableString,ForegroundColorSpan关键字,有你需要的代码和例子 参考技术B SpannableStringAndroid一个TextView设置多种颜色的2种高效方法
有时候一个文本框为了强调内容须要显示不同颜色,用下面代码能够轻松实现
方法一:(适用于颜色变化多的情况)
//为文本框设置多种颜色 textView=(TextView)findViewById(R.id.text_show); SpannableStringBuilder style = new SpannableStringBuilder("备注:签收人(张三)"); style.setSpan(new ForegroundColorSpan(Color.BLUE), 0, 3, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); style.setSpan(new ForegroundColorSpan(Color.RED), 7, 9, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); textView.setText(style);
方法二:(高校,快捷)
首先在字符串中就设置好颜色属性
String str1=String.format("价格 :<font color=\"#d40000\">%s", String.format("¥%1$.2f元", item.getPrice())); String str2=String.format("状态 :<font color=\"#666666\">%s", "已售");
mStaringPriceTV.setText(Html.fromHtml(str1)); mCountdownTimeTV.setText(Html.fromHtml(str2));
像这样的情况用一个文本框来实现会非常省事
以上是关于一个TextView中字的颜色不同,怎么设置的主要内容,如果未能解决你的问题,请参考以下文章