Android Gallery widget onScrollStateChanged

How can I set the method onScrollStateChangedfor the Android Gallery widget?

I want to do something if the scroll is complete.

+3
source share
1 answer

I could not find exactly what you are looking for, but I would try using the Gallery onScroll method:

public boolean onScroll 
  (MotionEvent e1, MotionEvent e2, float distanceX, float distanceY)

Last call onScroll, e2.getAction() should be equalMotionEvent.ACTION_UP

0
source

Source: https://habr.com/ru/post/1762623/


All Articles