描述
在安卓设备上,通过设置非零的scrollEventThrottle值,可以阻止onScrollEndDrag事件的发生。
重现步骤
- 使用以下代码,以任何速度滚动/拖动,注意
onScrollEndDrag
消息没有被记录。 - 在不进行拖动/无速度的情况下重复(在释放之前保持相同的滚动位置超过250ms),注意
onScrollEndDrag
消息被记录。
<FlatList
data={[1,2,3,4]}
onScrollEndDrag={() => console.log('onScrollEndDrag')}
renderItem={() => <View style={{height: 400}} />}
scrollEventThrottle={250}
/>
React Native版本
0.73.6
受影响的平台
运行时 - Android
npx react-native info
的输出
info Fetching system and libraries information...
System:
OS: macOS 14.4.1
CPU: (10) arm64 Apple M1 Pro
Memory: 264.94 MB / 32.00 GB
Shell:
version: "5.9"
path: /bin/zsh
Binaries:
Node:
version: 18.20.1
path: ~/.nvm/versions/node/v18.20.1/bin/node
Yarn:
version: 1.22.19
path: ~/.yarn/bin/yarn
npm:
version: 7.24.2
path: ~/code/react-native-sydney-components/node_modules/.bin/npm
Watchman:
version: 2024.04.15.00
path: /opt/homebrew/bin/watchman
Managers:
CocoaPods:
version: 1.15.2
path: /Users/AG63864/.rbenv/shims/pod
SDKs:
iOS SDK:
Platforms:
- DriverKit 23.4
- iOS 17.4
- macOS 14.4
- tvOS 17.4
- visionOS 1.1
- watchOS 10.4
Android SDK:
API Levels:
- "33"
- "34"
Build Tools:
- 33.0.1
- 34.0.0
System Images:
- android-34 | Google Play ARM 64 v8a
Android NDK: Not Found
IDEs:
Android Studio: 2023.2 AI-232.10300.40.2321.11567975
Xcode:
version: 15.3/15E204a
path: /usr/bin/xcodebuild
Languages:
Java:
version: 17.0.11
path: /Users/AG63864/.jenv/shims/javac
Ruby:
version: 3.1.1
path: /Users/AG63864/.rbenv/shims/ruby
npmPackages:
"@react-native-community/cli": Not Found
react:
installed: 18.2.0
wanted: 18.2.0
react-native:
installed: 0.73.6
wanted: 0.73.6
react-native-macos: Not Found
npmGlobalPackages:
"*react-native*": Not Found
Android:
hermesEnabled: false
newArchEnabled: false
iOS:
hermesEnabled: Not found
newArchEnabled: Not found
info React Native v0.74.0 is now available (your project is running on v0.73.6).
info Changelog: https://github.com/facebook/react-native/releases/tag/v0.74.0
info Diff: https://react-native-community.github.io/upgrade-helper/?from=0.74.0
info For more info, check out "https://reactnative.dev/docs/upgrading?os=macos".
堆栈跟踪或日志
n/a
重现器
https://github.com/scrungrth/android-scroll-throttle-reproducer
截图和视频
- 无响应*
4条答案
按热度按时间svmlkihl1#
ctehm74n2#
我已经调试过这个问题,以下是我的观察结果:
scrollEventThrottle
控制所有滚动事件,包括onScroll
、onScrollEndDrag
、onScrollMomentumBegin
、onMomentumScrollEnd
等。ReactScrollView
中设置一个时间戳lastScrollDispatchTime
。在触发下一个事件之前,会检查条件scrollEventThrottle
>currentTimeStamp - lastScrollDispatchTime
。onScroll
事件会在上述条件为 false 时触发,因此将lastDispatchTimestamp
设置为currentTimeStamp
。在此情况下,之后触发的任何事件都会被限制。在这种情况下,它是onScrollEndDrag
。我认为这种行为是根据文档设计的。@cortinico 可以对此进行更详细的解释。
apeeds0o3#
@kunalchavhan 这是一个很棒的见解;
我认为这种行为是根据文档设计的。
对我来说,即使有共享事件节流,每次滚动类型的事件在这里被节流似乎有些奇怪。
m3eecexj4#
升级从0.72.4到0.74.1后,同样存在问题。