Hi I'm having an issue with the new Android Lollipop RecyclerView
It keeps crashing with the following exception:
Attempt to invoke virtual method 'void android.support.v7.widget.RecyclerView$LayoutManager.onMeasure(android.support.v7.widget.RecyclerView$Recycler, android.support.v7.widget.RecyclerView$State, int, int)' on a null object reference
Full stack trace can found here
The code used to initiate the RecyclerView
is the same mostly the same as the tutorial, however for some reason this still complains. Any help would be greatly appreciated.
The code can be accessed at: gist here and layout: this gist
None of the views
, or objects
are null
Add the following code:
LinearLayoutManager layoutManager = new LinearLayoutManager(getActivity());
layoutManager.setOrientation(LinearLayoutManager.VERTICAL);
recyclerView.setLayoutManager(layoutManager);
Before adding adapter:
recyclerView.setAdapter(adapter);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With