How can I limit fling in Android gallery to just one item per fling?

前端 未结 6 1497
半阙折子戏
半阙折子戏 2020-11-30 03:43

I have a gallery with several full screen images. I want to limit the fling gesture to only advance one image at a time (like the HTC Gallery app). What\'s the right/easiest

6条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-30 03:54

    Simply override the Gallery Widget's onFling() method and don't call the superclass onFling() method.

    This will make the gallery advance one item per swipe.

提交回复
热议问题