答案 0 :(得分:1)
最后我找到了解决方案。创建自定义 RecyclerView 并覆盖方法:
@Override
protected float getBottomFadingEdgeStrength() {
return 0;
}
不只是在xml布局中使用它:
<CustomRecycler
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fadingEdgeLength="300dp"
android:requiresFadingEdge="vertical"/>