如何从右到左更改 RecyclerView 的顺序?

How to change order of RecyclerView from right to left?

我正在使用 RecyclerviewGridLayoutManager 。数据显示如下:

1      2      3
4      5      6
.
.
.

但我想要这个 :

3      2       1
6      5       4
.
.
.

我该怎么做?

覆盖GridLayoutManager对象的isLayoutRTL方法,像这样:

GridLayoutManager gl= new GridLayoutManager(context , 4)
       {
           @Override
           protected boolean isLayoutRTL() {
               return true;
           }
       };