Devlight / InfiniteCycleViewPager

Infinite cycle ViewPager with two-way orientation and interactive effect.
Apache License 2.0
5.75k stars 827 forks source link

SetCurrentItem without animation #62

Open pietro309 opened 6 years ago

pietro309 commented 6 years ago

I found a mistake where variable 'smoothScroll' is not used but 'true' is passed to mInfiniteCycleManager.setCurrentItem

@Override
public void setCurrentItem(final int item, final boolean **smoothScroll**) {
    if (mInfiniteCycleManager != null)
        super.setCurrentItem(mInfiniteCycleManager.setCurrentItem(item), **true**);
}