2

基本上作为标题中的问题。如何检查 TextView 中文本的实际颜色是什么?

4

3 回答 3

3

你可以简单地使用

mTextView.getCurrentTextColor();

有关更多信息,请参阅Android 开发人员指南

于 2012-11-15T21:46:06.180 回答
1

您可以使用

getResources().getColor(R.color.idname);

检查此链接以获取更多信息:

http://sree.cc/google/android/defining-custom-colors-using-xml-in-android

于 2012-11-15T21:46:01.750 回答
1
textView.getCurrentTextColor();
于 2012-11-15T21:46:53.357 回答