Closed netstart closed 6 years ago
I think bellow code is incorrect
public void setBitmap(Bitmap bitmap) { if (bmp!=null) { bmp=bitmap; canvasBmp = new Canvas(bitmap); postInvalidate(); } }
I think the correct code should be
public void setBitmap(Bitmap bitmap) { if (bitmap !=null) { bmp=bitmap; canvasBmp = new Canvas(bitmap); postInvalidate(); } }
@netstart Good catch
Fixed in https://github.com/zahid-ali-shah/SignatureView/commit/b51ee7b3b2577835e5c6bbab5e39a4968defc68b. Closing this.
I think bellow code is incorrect
I think the correct code should be