Pinterest like custom GridView

后端 未结 4 1399
醉话见心
醉话见心 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:57

    If you want to perform loading of image on scroll then it will similar to List View.First save all data from WS URL then load on demand Now

    Commonsware Endless Adapter For Listview,you can integrate it with GridView too

    EndLessAdapter

    Another way is to put your grid views in a ViewFlipper and then flip with an animation.

    Use setInAnimation() and setOutAnimation() to set the animations and flip the pages with showNext() and showPrevious()

提交回复
热议问题