我正在编写一个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元素中:
原文链接:https://www.f2er.com/react/300940.html<TouchableHighlight onPress = { this.onClick }> <View style={styles.container}> <Text style={styles.welcome}> Tap to change the background </Text> </View> </TouchableHighlight>
希望有所帮助.