RecyclerView decorator adding extra padding on refresh

后端 未结 8 2061
轻奢々
轻奢々 2021-02-01 17:42

So, I\'m facing a weird problem while implementing RecyclerView in my project. I have a custom decorator to implement a consistent top and bottom padding and a rather different

8条回答
  •  鱼传尺愫
    2021-02-01 17:53

    Faced the same issue and resolved it by placing

    mLayoutManager = new LinearLayoutManager(current_activity);
    recyclerView.setLayoutManager(mLayoutManager);
    

    in onPreExecute() method.

    Just give it a try if it works

提交回复
热议问题