不允许使用字符串类型(在' android:text Color Primary'值为' TITLE_COLOR_GOES_HERE')。
答案 0 :(得分:0)
如果你想使用某种颜色,有两种方法:
您可以直接使用colorcode
yourTextView.setTextColor(Color.RED);
或者您可以在资源中的colors.xml文件中定义一些颜色并使用它
yourTextView.setTextColor(colors.red);
设置颜色时,您需要在资源文件夹(res)的colors.xml文件中将颜色名称定义为字符串,或者使用Color.RED或您喜欢的颜色