0

I am working on an application where I have multiple products and i want to show those products with images and text(like title) on the recyclerview. I want to use image-slider on recyclerview to show my products multiple image with textview. I have successfully retrieve the textview's data from firebase and have shown that on the reyclerview but i dont know how to set the imageslider on the reccyclerview and show images. please guide me.

i want to show like this enter image description here

Vivek M Fauzdar
  • 127
  • 1
  • 13

1 Answers1

0

Image slider is not a built-in component of RecyclerView, or Android, for that matter. So in order to show images in that way, you either have to implement everything yourself or use a third-party library. The latter is usually much easier and faster. With some search, I found two relevant libraries:

I also found an article that explains how to use the first library in relistic example: https://www.geeksforgeeks.org/auto-image-slider-in-android-with-example/

user3738870
  • 1,415
  • 2
  • 12
  • 24