kadben
kadben

Reputation: 185

Android gridview and paging

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

Answers (1)

icecream
icecream

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

Related Questions