2017-06-20 72 views

回答

-1

您必须使用RecyclerView并为listView设置其布局管理器。使用LinearLayoutManager和网格视图,你必须使用GridLayoutManager

RecyclerView recyclerview = (RecyclerView) findViewById(R.id.recyclerview); 


    //this is for list view 
    // LinearLayoutManager mLayoutManager = new LinearLayoutManager(this); 

    //this is fro grid view 
     GridLayoutManager mLayoutManager = new GridLayoutManager(this, 2); 

    recyclerview.setLayoutManager(mLayoutManager);