我尝试在回收器视图中添加Scroll侦听器并制作了一些逻辑,但我无法一次刷一个项目。我在互联网上做了一些搜索,但我得到了一些第三方库,它有定制的回收站视图。我们可以在回收站视图中一次实施一个项目滑动吗?如果是,请告诉我怎么做? 一个项目一次滑动,如image。
答案 0 :(得分:15)
这已经很晚了,我知道。
使用自定义SnapHelper有一种非常简单方式来准确获取请求的滚动行为。
通过覆盖标准的SnapHelper来创建自己的SnapHelper(android.support.v7.widget.LinearSnapHelper)。
public class SnapHelperOneByOne extends LinearSnapHelper{
@Override
public int findTargetSnapPosition(RecyclerView.LayoutManager layoutManager, int velocityX, int velocityY){
if (!(layoutManager instanceof RecyclerView.SmoothScroller.ScrollVectorProvider)) {
return RecyclerView.NO_POSITION;
}
final View currentView = findSnapView(layoutManager);
if( currentView == null ){
return RecyclerView.NO_POSITION;
}
final int currentPosition = layoutManager.getPosition(currentView);
if (currentPosition == RecyclerView.NO_POSITION) {
return RecyclerView.NO_POSITION;
}
return currentPosition;
}
}
这基本上是标准方法,但没有添加通过滚动速度计算的跳转计数器。
如果您快速和长时间滑动,下一个(或上一个)视图将居中(显示)。
如果您慢速和短暂滑动,当前居中的视图会在释放后保持居中。
我希望这个答案仍然可以帮助任何人。
答案 1 :(得分:2)
https://github.com/googlesamples/android-HorizontalPaging/
这与您在图像中显示的内容类似。如果您正在寻找其他内容,请告诉我,我将链接相关的库。
基本上,ViewPager和recyclerView之间的区别在于,您在recyclelerView中切换多个项目,而在ViewPager中,您可以在许多片段或独立页面之间切换。
我发现你正在使用这个https://github.com/lsjwzh/RecyclerViewPager,你有什么特别的用例吗?
答案 2 :(得分:2)
这可以简化项目之间的移动:
public class SnapHelperOneByOne extends LinearSnapHelper {
@Override
public int findTargetSnapPosition(RecyclerView.LayoutManager layoutManager, int velocityX, int velocityY) {
if (!(layoutManager instanceof RecyclerView.SmoothScroller.ScrollVectorProvider)) {
return RecyclerView.NO_POSITION;
}
final View currentView = findSnapView(layoutManager);
if (currentView == null) {
return RecyclerView.NO_POSITION;
}
LinearLayoutManager myLayoutManager = (LinearLayoutManager) layoutManager;
int position1 = myLayoutManager.findFirstVisibleItemPosition();
int position2 = myLayoutManager.findLastVisibleItemPosition();
int currentPosition = layoutManager.getPosition(currentView);
if (velocityX > 400) {
currentPosition = position2;
} else if (velocityX < 400) {
currentPosition = position1;
}
if (currentPosition == RecyclerView.NO_POSITION) {
return RecyclerView.NO_POSITION;
}
return currentPosition;
}
}
示例:
LinearSnapHelper linearSnapHelper = new SnapHelperOneByOne();
linearSnapHelper.attachToRecyclerView(recyclerView);