Pinterest like Grid in Android

前端 未结 3 1007
臣服心动
臣服心动 2021-01-31 22:51

I want to build a grid like the one in Pinterest app on Android.

I started extending an AdapterView but I cannot make many things working

3条回答
  •  你的背包
    2021-01-31 23:31

    This can be achieved by small change to existing recyclerview and it's adapter

    Change to be done are : 1.In you Activity / Frgament

    uploadMediaAdapter = new UploadMediaAdapter(getActivity(),mediaArrayList);    
    rv_uploaded.setAdapter(uploadMediaAdapter);
    int spanCount = 2;
    rv_uploaded.setLayoutManager(new StaggeredGridLayoutManager(spanCount, StaggeredGridLayoutManager.VERTICAL));
    

    2.Your Recyclerview list item is :

    
    
        
    
            
    
            
    
        
    
    
    
    

    By doing this you can achieve what you are looking for!

提交回复
热议问题