CycleViewPager icon indicating copy to clipboard operation
CycleViewPager copied to clipboard

循环滚动,自动播放的ViewPager

Results 1 CycleViewPager issues
Sort by recently updated
recently updated
newest added

布局上添加图片以后,当滑动到临界位置进行切换时,会有小小的跳动动画。 无限循环时效果不是非常完美。 不完美处在这里 @Override public void onPageSelected(int position) { curPosition = position; if (curPosition == list.size() - 1 || curPosition == 0) { final int newReplacePosition = getRealPosition(curPosition); mHandler.postDelayed(new Runnable()...