-
-
Save Royalone94/a78631597a13d64977adb42ea9508f51 to your computer and use it in GitHub Desktop.
Clear the Canvas of a SurfaceView for Android.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Obtain a SurfaceView. | |
// SurfaceView surfaceView = (SurfaceView)findViewById(R.id.surfaceView1); | |
Canvas canvas = surfaceView.getHolder().lockCanvas(); | |
canvas.drawColor(Color.TRANSPARENT, PorterDuff.Mode.CLEAR); | |
// Draw someting | |
surfaceView.getHolder().unlockCanvasAndPost(canvas); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment