如何以编程方式将文本颜色设置为“textcolorsecondary”?我试过下面的代码,但它不起作用。有人知道密码有什么问题吗?

TextView tv1 = ((TextView)v.findViewById(R.id.hello_world));
tv1.setTextColor(Color.textColorSecondary);

最佳答案

首先在colors.xml中添加textColorSecondary

<color name="textColorSecondary">PutColorCodeHere</color>

然后在代码中设置颜色:
tv1.setTextColor(getResource.getColor(R.color.textColorSecondary));

10-06 06:12