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.
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);