Java 嵌套滚动视图结束动画

Java 嵌套滚动视图结束动画,java,android,kotlin,android-nestedscrollview,Java,Android,Kotlin,Android Nestedscrollview,我嵌套了ScrollView: <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"> <LinearLayou

我嵌套了ScrollView:

<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>

我的嵌套滚动视图结尾没有动画(波浪)。如何启用它


谢谢

尝试在
嵌套滚动视图中添加
android:fitsystemwindows=“true”
,您可以在
嵌套滚动视图中将此内容的滚动模式设置为
android:overScrollMode=“always”
@KrishnaSharma谢谢,但它没有解决我的问题。@HeisenBrg谢谢,但它没有解决我的问题。