What is the best replacement for a gallery in Android?

android

Solution

You can use `ImageView` which will scroll in horizontally on swipe.For the swipe you can use `onFling()` method where you can handle left and right swipe.Read this post for gesture detection. Good luck

Problem

I need to implement a gallery of clickable images that can be scrolled horizontally, and the Gallery widget is deprecated. What is the best replacement?

Original source

Related problems