CustomViews
CustomViews copied to clipboard
clearSignature() does not support transparent background
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