react-native – React Native检测点击View

前端之家收集整理的这篇文章主要介绍了react-native – React Native检测点击View前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在编写一个React Native应用程序,我想检测屏幕上任何位置的点击/点击,所以我在我的< View>上放了一个onClick处理程序.元素,但它似乎没有工作.这是我的渲染功能
<View style={styles.container} onClick={this.onClick}>
    <Text style={styles.welcome}>
        Tap to change the background
    </Text>
</View>

我需要做什么?

要使任何元素处理React-Native UI中的触摸/单击事件,您需要将元素放在TouchableOpacity,TouchableWithoutFeedback,TouchableNativeFeedback或TouchableHighlight元素中:
<TouchableHighlight onPress = { this.onClick }>
    <View style={styles.container}>
    <Text style={styles.welcome}>
        Tap to change the background
    </Text>
    </View>
</TouchableHighlight>

希望有所帮助.

原文链接:https://www.f2er.com/react/300940.html

猜你在找的React相关文章