StickerView
StickerView copied to clipboard
Zoom sticker from outside sticker
Just like on instagram stories sticker can be zoomed without placing fingers on the sticker. I want to achieve functionality like this. Its impossible or troublesome to zoom sticker when its zoomedout n made very small. How can i solve this?
I had to modify DrawableSticker.class for that and add an invisible holder view in case the original drawable get so small, then you can use your fingers from the right-bottom area of the original sticker drawable.
i am still trying.i made a framelayout over stickerview and on its ontouch i called stickerviews ontouch... now sticker responds but i need to make it work as desired but not sure if it works. so can u explain a bit more on ur idea. thank u for ur response.
have u made changes to other files too? coz argument on constructor has changed too..
I'm just passing the context along with the drawable when initiating the DrawableSticker, instead of
sticker = new DrawableSticker(drawable);
it will be
sticker = new DrawableSticker(drawable, context);
used codes from stickerview class and added it to the stickerview itself inside activity.