Pinkal Patel
Pinkal Patel
Any update on this?
I also want touch event outside of sticker in stickerview
@gajerarajnit I got the solution. In StickerView.java change below code: 1. Add `void onStickerNotClicked();` into `interface OnStickerOperationListener` 2. Write this code `if (onStickerOperationListener != null) {` ` onStickerOperationListener.onStickerNotClicked();` `}` inside...
write this code in implemented methods `@Override` `public void onStickerNotClicked() {` `stickerView.invalidate();` `}` This will hide border and buttons
@vrsrohit invalidate is working for me, check it whether it is another problem.