0

I need to implement Android Image Slider exactly like this. lend me some suggestions please.

2 Answers2

0

You will need to create a class that is responsible of displaying the images. The class should have its onSwipeTouchListener and load images to memory and move them right and left according to the gesture. But don't load all images at once! Load the previous and next 5 images for example and have a single filler image in memory for the rest.

0

This is called Carousels. You can get references from below:

https://android-arsenal.com/details/1/3991

https://github.com/Azoft/CarouselLayoutManager

https://android-arsenal.com/details/1/3712

ViramP
  • 1,659
  • 11
  • 11