Search code examples
androidandroid-layouthorizontalscrollview

how to create a horizontal list of imageview in android?


for image click here

I am a beginner in android development,so can anybody help me create horizontal list of imageview like shown in the picture.It should be such that the image in the middle is in selected state and details about it can be shown and the list can be scrolled horizontally.


Solution

  • You could use a RecyclerView a good tutorial for this can be found here: http://stacktips.com/tutorials/android/android-recyclerview-example

    To make the RecyclerView horizontal use this lines:

    LinearLayoutManager layoutManager
    = new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL, false);
    yourRecyclerView.setLayoutManager(layoutManager);