android 嵌套滚动视图结束动画

vhmi4jdf  于 2022-12-02  发布在  Android
关注(0)|答案(1)|浏览(115)

我已嵌套滚动视图:

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

我的嵌套滚动视图在结束时没有动画(波形)。如何启用它?
谢谢

g2ieeal7

g2ieeal71#

您是指overScrollMode吗?请尝试以下操作:
android:overScrollMode="always"

相关问题