Reputation: 348
i want to display the some set of images horizontally like Instagram app implemented
Example : example is here
how i can achieve this , help me. Thanx in advance
Upvotes: 1
Views: 2174
Reputation: 1473
If its just a single view on your screen where you have to show an image slider like that, you can simply use a RecyclerView with a LinearLayoutManager and you can set the orientation as horizontal.
If its a list of such Image slider views, you can use a RecyclerView and can use a ViewPager in every row item.
Upvotes: 2