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

时间:2019-01-21 10:38:35

标签: android android-recyclerview gridlayoutmanager

我将RecyclerviewGridLayoutManager一起使用。数据显示如下:

1      2      3
4      5      6
.
.
.

但是我想要这个:

3      2       1
6      5       4
.
.
.

我该怎么做?

1 个答案:

答案 0 :(得分:1)

重写GridLayoutManager对象的isLayoutRTL方法,如下所示:

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