Android androidx.recyclerview删除滚动效果

时间:2019-09-30 16:13:20

标签: android-recyclerview scroll androidx

我刚刚将代码库迁移到Androidx,发现所有的recyclerViews都再次显示了其滚动效果。

<androidx.recyclerview.widget.RecyclerView
               android:id="@+id/mRecyclerView"
               android:layout_width="match_parent"
               android:layout_height="wrap_content"
               android:clipToPadding="false"
               android:descendantFocusability="blocksDescendants"
               android:nestedScrollingEnabled="false"
               android:overScrollMode="never"
               android:paddingTop="32dp"
               android:paddingBottom="32dp"
               app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
               tools:itemCount="9"
               tools:listitem="@layout/item_section_other" />

在androidx之前,我删除了添加滚动效果

android:overScrollMode="never"

,但似乎不再起作用。 有什么办法吗? 谢谢

0 个答案:

没有答案