You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 11, 2024. It is now read-only.
I use ViewFlow in my application as an image gallery. And I want the image can scroll automatically. So I start an thread to invoke setSelection method, but I can not get the scroll animation。Then I set the startScroll scroll duration to 2000ms in setVisibleView method .But, It seems only the first view to second view has the scroll animation. What can I do to realize auto scroll with viewflow library?
The text was updated successfully, but these errors were encountered:
Hi, this can autoscroll modifying the PRIVATE method postViewSwitched(int direction)
[when direction > 0 is to the right,
direction < 0 is to the left
and direction = 0 just returns].
Can change it to PUBLIC or use it on OTHER FUNCTION.
You may have to do some validations (i think), but this is working nice for me.
I use ViewFlow in my application as an image gallery. And I want the image can scroll automatically. So I start an thread to invoke setSelection method, but I can not get the scroll animation。Then I set the startScroll scroll duration to 2000ms in setVisibleView method .But, It seems only the first view to second view has the scroll animation. What can I do to realize auto scroll with viewflow library?
The text was updated successfully, but these errors were encountered: