欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  技术分享

Android setTextColor无效_安卓setTextColor()的参数设置方式

程序员文章站 2022-03-01 15:06:50
...

通过代码setTextColor时、如果color是一个资源文件 会set失败 没有效果

遇到这样的情况有两种解决办法、亲测过、两种都是有效的


一、注解方式

通过在方法上面添加注解解决问题

代码如下

@SuppressLint("ResourceAsColor") 

二、Context方式

通过Context 获取getColorStateList 来解决问题

代码如下

int color = getContext()
	.getResources()
	.getColorStateList(R.color.reservation_text);
textView.setTextColor(color);

上面的两种方式都可以解决这个问题哈、希望对一些哥们有帮助