ReactNative onResponderRelease在Android上不起作用

时间:2016-03-10 11:36:34

标签: react-native

我试图在Android设备上使用ScrollView的onResponderRelease事件,但它不能正常工作。像这样的代码:

<ScrollView 
    onResponderRelease = {()=>{console.log('release')}}
/>

我看到很多反应原生的lib都像这样使用这个api。 它支持android平台吗?

1 个答案:

答案 0 :(得分:0)

是的,它有这样的问题 - 您可以阅读有关此https://github.com/facebook/react-native/issues/9447

的更多信息

尝试使用'onMomentumScrollEnd',在某些情况下,它会完全符合您的预期:

<ScrollView 
    onMomentumScrollEnd = {()=>{console.log('release on Android')}}
    onResponderRelease = {()=>{console.log('release on IOS')}}
/>