Pinterest like custom GridView

后端 未结 4 1406
醉话见心
醉话见心 2021-02-07 16:31

I am new to android, and I am searching for a logic for grid view like pinterest(homescreen) app that has been build for i-phone. A large no. of images are coming from the serve

4条回答
  •  春和景丽
    2021-02-07 16:56

    Create layout like as follow

    
    
    
       
    
       
    
       
    
    
    
    

    Now add your ImageView dynamically in layouts

    linear1 = (LinearLayout) findViewById(R.id.linear1);
    linear2 = (LinearLayout) findViewById(R.id.linear2);
    linear3 = (LinearLayout) findViewById(R.id.linear3);
    
    for(int i=0;i

提交回复
热议问题