I'm creating a recyclerView in android project and i want to set a gridLayout manager in my recyclerView .
here is my Code :
workHourRecycler = view.findViewById(R.id.market_hours_recycler);
workHourRecycler.setLayoutManager(new GridLayoutManager(getContext(),4));
But GridLayout must be 'rtl direction' anyone have idea ?
Thanks.