我刚刚将代码库迁移到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"
,但似乎不再起作用。 有什么办法吗? 谢谢