我试过......
android:textColor="#ff0000"
&安培;
TextView app_nameTextView = (TextView) findViewById(R.id.app_name);
app_nameTextView.setTextColor(getResources().getColor(R.color.white));
但它不会改变文字颜色,有什么我做错了吗?
答案 0 :(得分:2)
试试这个
tv.setTextColor(Color.WHITE);
答案 1 :(得分:1)
尝试android:textColor="#FFFFFF"
白色的十六进制代码为#FFFFFF
答案 2 :(得分:0)
Spannables怎么样?例如:
Spannable spanText = new SpannableString("INFO: Some spanned result.");
spanText.setSpan(new ForegroundColorSpan(Color.GREEN), 0, spanText.length(), 0);
area.append(spanText);