Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Of course, please provide code example. – j0k Oct 13 '12 at 9:48
I believe this is because onDraw does not invoke the garbage collector, so it has less overhead (because your buffer bitmap is mutable, whereas the bufferCanvas is not). This is speculation, though – Pheonixblade9 Oct 15 '12 at 21:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.