我有nestedscrollview:
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/nestedscrollview"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/layout_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:focusableInTouchMode="true">
<include
... />
<include
..../>
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_inserts"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>我的嵌套滚动视图在末尾没有动画(Wave)。如何启用它?
谢谢
发布于 2022-11-30 12:24:31
你是说overScrollMode吗?试试这个:
android:overScrollMode="always"
https://stackoverflow.com/questions/51682919
复制相似问题