我正在使用 v4 ViewPager 并按照下面的链接可以使用插值器设置滚动速度和滚动动画。
当像这样在构造函数中被问到时,我使用了线性插值器
private void setScroller() {
try {
Field mScroller;
mScroller = ViewPager.class.getDeclaredField("mScroller");
mScroller.setAccessible(true);
FixedSpeedScroller scroller =
new FixedSpeedScroller(this.getContext(), new LinearInterpolator());
mScroller.set(this, scroller);
} catch (NoSuchFieldException e) {
} catch (IllegalArgumentException e) {
} catch (IllegalAccessException e) {
}
}
现在,因为我的 viewpages 中有许多视图页面。在它下面我添加了由点组成的寻呼机。
O O O O O O O
按下一个点用smoothScrolling 设置当前页面。使用触摸事件,我可以获得需要显示的正确页码。在知道这一点后,我调用这个方法来平滑滚动。
public void snapToPage(int whichPage) {
int numperOfSwapsRequired = whichPage - getCurrentPageIndex();
mScrollingDuration *= numperOfSwapsRequired;
if(numperOfSwapsRequired == 0) return;
if(numperOfSwapsRequired > 0) {
for(int i = 0; i<numperOfSwapsRequired; i++){
setCurrentItem(getCurrentItem()+1, true);
}
} else {
for(int i = 0; i>numperOfSwapsRequired; i--){
setCurrentItem(getCurrentItem()-1, true);
}
}
mScrollingDuration = 300;
}
现在一切正常。但只有当我选择一个与所选页面点正确的点时。它使用线性动画正确滚动。
但是当我选择留给所选页面点的点时。它不滚动。它只是直接跳转到没有滚动动画的页面。
所以我很困惑如何解决这个问题。这与插值器或滚动器有关吗?
任何帮助,将不胜感激。
谢谢