Reputation: 185
I want to make paging with android GridView
, but first I want to know if anyone has an idea of how to do that.
Upvotes: 3
Views: 2392
Reputation: 973
One 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()
Upvotes: 5