React Native Android:如何删除ScrollView的"过度滚动效果"

dav*_*d72 9 android scrollview react-native

在React Native Android中添加了ScrollView组件,当您向下或向上向下滚动时,它会显示过滚动效果.你怎么删除这个?

Jus*_*der 11

从React Native 0.42开始,可以使用overScrollModeprop为每个ScrollView设置overscroll模式:

https://facebook.github.io/react-native/docs/scrollview.html#overscrollmode


dav*_*d72 10

在添加此选项之前,我必须使用styles.xml为整个应用程序执行此操作:

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="android:overScrollMode">never</item>
</style>
Run Code Online (Sandbox Code Playgroud)