2016-03-10 19 views
7

AndroidデバイスでScrollViewのonResponderReleaseイベントを使用しようとしましたが、うまく動作しません。次のようなコード:ReactNative onResponderReleaseがAndroidで動作しない

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

このように、このAPIを使用した反応の多いライブラリが多数あります。 Androidプラットフォームをサポートしていますか?

答えて

0

はい、それはこのような問題を持っている - あなたは、いくつかのケースでは、それはあなたが正確に何を期待していないんだろう、「onMomentumScrollEnd」を使用するようにしてください。このhttps://github.com/facebook/react-native/issues/9447

詳細を読むことができます:

<ScrollView 
    onMomentumScrollEnd = {()=>{console.log('release on Android')}} 
    onResponderRelease = {()=>{console.log('release on IOS')}} 
/> 
関連する問題