How to implement horizontal gridlayoutmanager with recyclerview. Fixed row count. and horizontal scroll. Like this...
gridLayoutManager = ne
I just add the affirmation. This picture might proof that Recyclerview with GridLayoutmanager
is available for horizontal.
Specify ROWSCOUNT (there are 3 rows on your picture):
GridLayoutManager gridLayoutManager = new GridLayoutManager(getContext(), ROWSCOUNT, GridLayoutManager.HORIZONTAL, false);
Set layout manager: recyclerView.setLayoutManager(gridLayoutManager);
Show your recycler view setContentView(recyclerView);
I've prepared a sample for you, check it out