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
If you want to use a RecyclerView with the GridLayoutManager, this is the way to achieve horizontal scroll.
RecyclerView
GridLayoutManager
recyclerView.setLayoutManager( new GridLayoutManager(recyclerView.getContext(), rows, GridLayoutManager.HORIZONTAL, false));