I need to implement a horizontal listview in my Android application. I did a bit of research and came across How can I make a horizontal ListView in Android? and Horizontal
Trying to build a horizontal ListView is taking too much time. I have resolved it in two ways.
1.By using a ViewPager whose adapter extends from PagerAdapter.
2.By using RecyclerView just as above. Need to apply LayoutManager as in the following code:
LinearLayoutManager layoutManager
= new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL, false);
RecyclerView myList = (RecyclerView) findViewById(R.id.my_recycler_view);
myList.setLayoutManager(layoutManager);