我正在尝试设置一个非常简单的布局的背景:
LinearLayout ll = (LinearLayout) findViewById(R.id.simple_layout);
这有效:
ll.setBackgroundColor(Color.WHITE);
但这不会:
ll.setBackgroundColor(R.color.white);
是的,我验证了它R.color.white
是在 .xml 文件下的 colors.xml 文件中定义的/res/values
。
我错过了什么?