android-collage-views
android-collage-views copied to clipboard
Bottom image on top of other images
Hi, Am using this library code to make collage ,but i don't know how to get selected bottom image on top of other image.Because the last image always comes under other images.
Thanks
Go to ScaleGestureDetector and add view.bringToFront to the ACTION_DOWN like below, if (action == MotionEvent.ACTION_DOWN) { reset(); // Start fresh view.bringToFront();//Add this line view.getParent().requestLayout(); }