Search code examples
androidandroid-widgetandroid-gallery

How can I count flings / swipes on a Android Gallery View?


I'm using a Gallery (android.widget.gallery) with an ImageAdapter which extends BaseAdapter. I need to count all User-Interactions with this Gallery. I count the Clicks within an OnClickListener, but how can I count the Flings / Swipes?

I hope you can give me an hint!


Solution

  • You will need to subclass Gallery, and override the methods you need, such as onFling, onDown, etc.