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

android修改文字颜色

程序员文章站 2022-07-13 16:44:17
...

android修改文字颜色


text.setTextColor(Color.BLACK);  //方法一
text.setTextColor(Color.parseColor("#909090"));   //方法二
text.setTextColor(getResources().getColor(R.color.white))   //方法三

相关标签: android android