Android一个TextView设置多种颜色的2种高效方法
Posted pengkv
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android一个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));
像这种情况用一个文本框来实现会很省事
以上是关于Android一个TextView设置多种颜色的2种高效方法的主要内容,如果未能解决你的问题,请参考以下文章
android 如何设置TextView中字体在不同状态下的颜色
Android TextView中文字通过SpannableString来设置超链接 颜色 字体等属性
Android TextView中文字通过SpannableString来设置超链接颜色字体等属性