Android RecyclerView: Change layout file LIST to GRID onOptionItemSelected

后端 未结 5 940
挽巷
挽巷 2020-12-02 06:34

I am developing an Android Application for Online Shopping. I have created following view for List of Products using RecyclerView, in that i want to change view

5条回答
  •  情话喂你
    2020-12-02 07:02

    I solved this problem by setting the adapter again to the RecyclerView, after changing the layout manager.

    listView.setLayoutManager(new LinearLayoutManager(this));
    listView.setAdapter(adapter);
    

提交回复
热议问题