I need to implement Android Image Slider exactly like this. lend me some suggestions please.
Asked
Active
Viewed 337 times
2 Answers
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.
-
Thanks for your reply. But Is there any library to implement this image slider? I'm new to Android Development this looks quite bit complicated. Thanks in advance. – Mohamed Sadakathulla Aug 19 '16 at 16:26
-
Maybe this can help too: https://www.sitepoint.com/handling-displaying-images-android/ – Aug 19 '16 at 16:36
-
That helped me a lot. Thank you. – Mohamed Sadakathulla Aug 19 '16 at 19:32
-
@MohamedSadakathulla Glad I could help:) – Aug 19 '16 at 20:59
0
This is called Carousels. You can get references from below:
https://android-arsenal.com/details/1/3991

ViramP
- 1,659
- 11
- 11