如何关闭列表视图和滚动视图末尾的波浪动画

How to off wave animation at the end of listview and scrollview

如何在 listview/scrollview

的 end/start 关闭波浪动画

将这一行添加到 RecyclerView 布局中

android:overScrollMode="never"

API 前 14 级:

android:fadingEdge="none"

API 14 级以上:

android:requiresFadingEdge="none"

您可以定义样式:

styles.xml

<style name="Theme.MyTheme" parent="android:Theme.Holo">
    <item name="android:listViewStyle">@style/ListViewStyle</item>
    <item name="android:scrollViewStyle">@style/ScrollViewStyle</item>
</style>

<style name="ListViewStyle" parent="android:Widget.ListView">
    <item name="android:overScrollMode">never</item>
</style>

<style name="ScrollViewStyle" parent="android:Widget.ScrollView">
    <item name="android:overScrollMode">never</item>
</style>

AndroidManitest.xml

<application
        android:theme="@style/Theme.MyTheme"
        ...
>

<ScrollView
    android:layout_width="match_parent"
    android:overScrollMode="never"
    android:layout_height="match_parent">
   ....
</ScrollView>