Hi I\'m having an issue with the new Android Lollipop RecyclerView
Android Lollipop RecyclerView
It keeps crashing with the following exception:
Attempt to inv
Add the following code:
LinearLayoutManager layoutManager = new LinearLayoutManager(getActivity()); layoutManager.setOrientation(LinearLayoutManager.VERTICAL); recyclerView.setLayoutManager(layoutManager);
Before adding adapter:
recyclerView.setAdapter(adapter);