android-spinnerwheel icon indicating copy to clipboard operation
android-spinnerwheel copied to clipboard

onScrollingFinished called after onChanged

Open jgamedev opened this issue 8 years ago • 0 comments

I used the same same code from the demo app, so I check for the value of the scrolling flag, however by the time onScrollingFinished is finally called to reset the value of this variable, onChanged has already been called and doesn't get called again after that.

Here's how the log looks like (the boolean value is the value of the scrolling variable):

08-16 03:08:07.047 4138-4138/ E/MyDebugTag: scrolling started true
08-16 03:08:07.187 4138-4138/ E/MyDebugTag: scrolling changing true
08-16 03:08:07.367 4138-4138/ E/MyDebugTag: scrolling changing true
08-16 03:08:07.707 4138-4138/ E/MyDebugTag: scrolling finished false

And here is the full code: http://hastebin.com/ocidofumoh.java

jgamedev avatar Aug 16 '16 18:08 jgamedev