我需要修复回收站视图中的滚动,如果用户仅删除一个可见视图,我想在可用位置显示不可见视图。我尝试过以下内容,
添加
android:overScrollMode="never"
在xml上,并且
recyclerView.setHasFixedSize(false);
Java,但没有任何帮助,任何帮助都将是非常可观的。
谢谢。
更新
我想禁用滚动选项,用户只能在删除其中一个可见项目后看到不可见项目。
我找到了一个非常简单的解决方案,可以停止循环视图中的所有垂直滚动。这花了我大约半天的时间才弄清楚,但我认为现在真的很简单和优雅。
创建一个java类,使用在回收器视图中找到的所有构造函数扩展回收器视图。在您的xml中,确保将其更改为新小部件。然后您必须覆盖方法:onInterceptTouchEvent
和computeVerticleScrollRange
。回收器视图中有一个bug,它仍然会中断滚动事件。
所以:
public class FooRecyclerView extends RecyclerView {
private boolean verticleScrollingEnabled = true;
public void enableVersticleScroll (boolean enabled) {
verticleScrollingEnabled = enabled;
}
public boolean isVerticleScrollingEnabled() {
return verticleScrollingEnabled;
}
@Override
public int computeVerticalScrollRange() {
if (isVerticleScrollingEnabled())
return super.computeVerticalScrollRange();
return 0;
}
@Override
public boolean onInterceptTouchEvent(MotionEvent e) {
if(isVerticleScrollingEnabled())
return super.onInterceptTouchEvent(e);
return false;
}
public FooRecyclerView(Context context) {
super(context);
}
public FooRecyclerView(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
}
public FooRecyclerView(Context context, @Nullable AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
}
从
RecyclerView
android:id="@+id/task_sub_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
到
com.customGoogleViews.FooRecyclerView
android:id="@+id/task_sub_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
现在在您的代码中,您只需使用disableVerticleScroll
方法和您的all set来控制回收器视图的状态。