这是我的 color.xml
<color name="xyz">#507EC0</color>
<color name="abc">#27B0D0</color>
<color name="def">#A8CBE1</color>
这里是 onDraw() 里面的代码
Paint xyzPaint = new Paint();
thisWeekTotalPaint.setColor(R.color.xyz);
canvas.drawRect(30, 70, 200, 100, xyzPaint);
但无论我使用什么颜色,它似乎都是灰色的。