Surabhi Paul
Surabhi Paul
You can set realBounds = new Rect(0,0,0,0); to hide the sticker and again when you want to show it set realBounds = new Rect(0, 0, getWidth(), getHeight());
You need to find matrix of sticker on click Matrix matrix = stickerView.getCurrentSticker().getMatrix(); stickerView.example(matrix); In Stickerview public void example(Matrix matrix){ action = false; mat = matrix; } And then you...
You can also first convert url to drawable and then use it.