为什么 CustomButton 结果是灰色的?在 R.color.blue 中,绿色和红色实际上是红色和蓝色和红色。我正在尝试从colors.xml中随机选择红色蓝色绿色中的按钮颜色。
public void CustomButton(int btnId) {
Button btn = (Button) findViewById(btnId);
int[] btnColor = { R.color.blue, R.color.green, R.color.red };
Random random = new Random();
int c = btnColor[random.nextInt(btnColor.length)];
btn.setBackgroundColor(c);
}