Android RecyclerView LayoutManager Exception

后端 未结 2 1404
日久生厌
日久生厌 2021-02-20 04:21

Hi I\'m having an issue with the new Android Lollipop RecyclerView

It keeps crashing with the following exception:

Attempt to inv         


        
2条回答
  •  面向向阳花
    2021-02-20 04:55

    Add the following code:

        LinearLayoutManager layoutManager = new LinearLayoutManager(getActivity());
        layoutManager.setOrientation(LinearLayoutManager.VERTICAL);
        recyclerView.setLayoutManager(layoutManager);
    

    Before adding adapter:

    recyclerView.setAdapter(adapter);
    

提交回复
热议问题