How can I fill RecyclerView with GridLayoutManager from right to left
问题 I\'m trying to fill some data into a RecyclerView with GridLayoutManager : GridLayoutManager layoutManager = new GridLayoutManager(this, 3, GridLayoutManager.VERTICAL, false); This will fill the data into the grid from left to right . The first item will be put into top-left place, etc. But the app I\'m developing is designed for an RTL language, so I need to make it fill from right to left . I tried to change the last argument to true . But it just scrolled the RecyclerView all the way down.