Skip to content Skip to sidebar Skip to footer

Empty Spaces At The End Of Row Recyclerview With Gridlayoutmanger

I am using recyclerview with gridlayoutmanger with spancount 2 containing fixed 12 elements only in recyclerview.On tablets in landscape mode the empty space is remaining after the

Solution 1:

Use FlexLayoutManger with recycler view :

RecyclerViewrecyclerView= (RecyclerView) context.findViewById(R.id.recyclerview);
FlexboxLayoutManagerlayoutManager=newFlexboxLayoutManager(context);
layoutManager.setFlexDirection(FlexDirection.COLUMN);
layoutManager.setJustifyContent(JustifyContent.FLEX_END);
recyclerView.setLayoutManager(layoutManager);

See this link https://github.com/google/flexbox-layout#flexboxlayoutmanager-within-recyclerview

Post a Comment for "Empty Spaces At The End Of Row Recyclerview With Gridlayoutmanger"