我已嵌套滚动视图:
<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>
我的嵌套滚动视图在结束时没有动画(波形)。如何启用它?
谢谢
1条答案
按热度按时间g2ieeal71#
您是指overScrollMode吗?请尝试以下操作:
android:overScrollMode="always"