CustomViews
CustomViews copied to clipboard
A set of views for use in android applications, including a signature capture view.
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);
Included signature check
Hi!!! I need to know if you have painted or not? Thanks!!!
I think there's a bug in the onsizechanged, line 112, it's setting bitH to mBitmap.getWidth(), shouldn't it be getHeight()?. If original height was bigger than width, I think it make...