Open momoteRyanmt opened 9 years ago
It attempts to use transparent drawColor which means the canvas stays the same
solution is to swap the following in clearSignature method - mCanvas.drawColor(bgColor); with mCanvas.drawColor(bgColor, PorterDuff.Mode.CLEAR);
when i using this method . my signView is black. your code not working
It attempts to use transparent drawColor which means the canvas stays the same
solution is to swap the following in clearSignature method - mCanvas.drawColor(bgColor); with mCanvas.drawColor(bgColor, PorterDuff.Mode.CLEAR);