Pinkal Patel

Results 5 comments of Pinkal Patel

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.