RecyclerView scrolls to bottom when data is loaded

后端 未结 2 1280
鱼传尺愫
鱼传尺愫 2021-01-04 02:29

I have some weird issue with RecyclerView since I changed my app to load the data from Room database.

I have a screen (a Fragment

2条回答
  •  孤街浪徒
    2021-01-04 03:15

    In my case this line was culprit,

    GridLayoutManager gridLayoutManager = new GridLayoutManager(this, SPAN_COUNT, GridLayoutManager.VERTICAL, true);
    

    Specifically , last parameter which is setting reverseLayout attribute to true. Make it false and RecyclerView doesn't scroll to bottom of screen.

提交回复
热议问题