如果我触摸 Touchables(TouchableHighlight、TouchableOpacity、TouchableWithoutFeedback),PanResponder 无法检测到触摸

ton*_*sta 4 react-native

我已经在我的项目中实现了PanResponder,但它仅在我触摸不可触摸元素时才有效。当我触摸触摸的元素,如TouchableOpacity,当我移动我的手指上PanReponder不responds.But TouchableOpacity PanResponder响应。

Button 也发生了同样的事情

请告诉我可能是什么问题。

世博链接:https : //snack.expo.io/SyYrtq87W

import React, { Component } from 'react';
import { Button, PanResponder, View, StyleSheet,TouchableOpacity } from 'react-native';
import { Constants } from 'expo';

export default class App extends Component {
  state = {
    show : false
  };
  _panResponder = {};

  componentWillMount() {
    this._panResponder = PanResponder.create({

      onStartShouldSetPanResponder: () => {
        alert('clicked')
        console.log('clicked')
        return true
      },
      onMoveShouldSetPanResponder: () => {
        alert('moved')
        console.log('moved')
        return true
      },
      onStartShouldSetPanResponderCapture: () => false,
      onMoveShouldSetPanResponderCapture: () => false,
      onPanResponderTerminationRequest: () => true,
      onShouldBlockNativeResponder: () => false,
    });
  }

  render() {
    return (
      <View
        style={styles.container}
        collapsable={false}
        {...this._panResponder.panHandlers}>

 {/*********************PanResponder does not respond***************************/}       

        <TouchableOpacity>
          <View style={{width:200, height:200,backgroundColor:'red'}}>
          </View>
        </TouchableOpacity>



        <Button
          title="Here is a button for some reason"
          onPress={() => {}}  
        />

  {/*****************************************************************************/}
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
    paddingTop: Constants.statusBarHeight,
    backgroundColor: '#ecf0f1',
  }
});
Run Code Online (Sandbox Code Playgroud)

Mot*_*Azu 9

我有一个类似的问题。基本上是因为您总是返回 trueonStartShouldSetPanResponder和/或onMoveShouldSetPanResponder他们将接管该触摸事件。

我的解决方法:不要将触摸视为“您的”(PanResponder 的),除非用户先将其移动到您设置的阈值。

const touchThreshold = 20;
const panResponder = PanResponder.create({
    onStartShouldSetPanResponder : () => false,
    onMoveShouldSetPanResponder : (e, gestureState) => {
        const {dx, dy} = gestureState;

        return (Math.abs(dx) > touchThreshold) || (Math.abs(dy) > touchThreshold);
    },
    ...
});
Run Code Online (Sandbox Code Playgroud)


ton*_*sta 5

最后它击中了我。这是一个非常愚蠢的错误。忘记添加alert('clicked')

onStartShouldSetPanResponderCapture: ()
Run Code Online (Sandbox Code Playgroud)

现在,

onStartShouldSetPanResponderCapture: () => {alert('clicked') ; return false},

博览会链接: https: //snack.expo.io/ryWx7lBrb

现在,触摸无处不在,包括触摸屏和按钮。

import React, { Component } from 'react';
import { Button, PanResponder, View, StyleSheet,TouchableOpacity } from 'react-native';
import { Constants } from 'expo';

export default class App extends Component {
  state = {
    show : false
  };
  _panResponder = {};

  componentWillMount() {
    this._panResponder = PanResponder.create({

      onStartShouldSetPanResponder: () => {
        alert('clicked')
        return true
      },
      onMoveShouldSetPanResponder: () => true,
      onStartShouldSetPanResponderCapture: () => {alert('clicked') ; return false},
      onMoveShouldSetPanResponderCapture: () => false,
      onPanResponderTerminationRequest: () => true,
      onShouldBlockNativeResponder: () => false,
    });
  }

  render() {
    return (
      <View
        style={styles.container}
        collapsable={false}
        {...this._panResponder.panHandlers}>

 {/*********************PanResponder now responds***************************/}       

        <TouchableOpacity>
          <View style={{width:200, height:200,backgroundColor:'red'}}>
          </View>
        </TouchableOpacity>



        <Button
          title="Here is a button for some reason"
          onPress={() => {}}  
        />

  {/*****************************************************************************/}
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
    paddingTop: Constants.statusBarHeight,
    backgroundColor: '#ecf0f1',
  }
});
Run Code Online (Sandbox Code Playgroud)