I used this code to clear the paint:
paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.CLEAR));
paint.setColor(Color.GREEN);
I used this code to clear the paint:
paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.CLEAR));
paint.setColor(Color.GREEN);
Try that, drawView is the canvas name
drawView.clearPoints();
Add method;
public void clearPoints() {
points.clear();
invalidate();
}
Try to set your own color on canvas like this :
Canvas.drawColor(Color.TRANSPARENT, PorterDuff.Mode.CLEAR);