I was in the process of changing an Activity into a Fragment and got the following error as soon as I inflated the RecyclerView.
@Override
public View onCrea
I had same issue when I tried to use android-parallax-recycleview.
The solution was simple, you can create the layout manager manager manually.
Code snippet from example-parallaxrecycler:
LinearLayoutManager manager = new LinearLayoutManager(this);
manager.setOrientation(LinearLayoutManager.VERTICAL);
myRecycler.setLayoutManager(manager);