tags:

views:

119

answers:

1

I want to make paging with android GridView, but first I want to know if anyone has an idea of how to do that.

+1  A: 

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()

icecream