我有以下内容:
mPaintRefernce.getColor()
如何检索0-255范围内的RGB值,因此红色= 200,蓝色= 120等?
答案 0 :(得分:4)
可以,使用android framework
提供的android.graphics.Color
类
Color.red(int color);
从颜色Color.green(int color);
从颜色Color.blue(int color);
从颜色例如,要获得红色。
int red = Color.red(mPaintRefernce.getColor());