Paint.setColor is expecting an integer. But what I have is a Color object. I don\'t see a color.getIntValue() in Java? So how do I do
Paint.setColor
Color
color.getIntValue()
Try this one:
Color color = new Color (10,10,10) myPaint.setColor(color.getRGB());