标签: android textview
如何更改单个TextView的R,G,B?
答案 0 :(得分:2)
TextViews没有亮度属性。它们的前景色和背景色设置为ARGB值,例如:不透明黑色背景为0xff000000,不透明白色前景为0xffffffff。
要增加亮度,只需将R,G和B全部增加相同的量即可。
要更改TextView的颜色,您可以使用android:background和android:textColor xml属性。
android:background
android:textColor