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
Faced the same issue and resolved it by placing
mLayoutManager = new LinearLayoutManager(current_activity); recyclerView.setLayoutManager(mLayoutManager);
in onPreExecute() method.
onPreExecute()
Just give it a try if it works