Finger paint drawing implies drawing to an offline bitmap that gets drown in the view at onDraw. But also painting the line in onDraw improves the quality of the line, i.e. it's not as jagged.
Can someone explain why that is?
// in the onTouchEvent method after a touch is performed you commit the path to the buffer bitmap
public boolean onTouchEvent(MotionEvent event) {
case MotionEvent.ACTION_UP:
bufferCanvas.drawPath(path, paint);
break;
}
// in the onDraw you draw the bufferBitmap associated with bufferCanvas and also draw the path so that the user sees when he's drawing
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
// draw the buffered canvas
if (bufferBitmap != null)
canvas.drawBitmap(bufferBitmap, 0, 0, paint);
// draw path on top of it
if (path != null) {
canvas.drawPath(path, paint);
}
}
Before, I used to draw the path to buffer at MotionEvent.ACTION_MOVE and it used to look very jagged looking but only after I would start drawing a new path. Why this behavior?