(仅限iOS )
<TouchableOpacity>
如果在<ScrollView>
:
keyboardShouldPersistTaps="always"
没有任何区别<ScrollView style={styles.scrollView}>
<TouchableOpacity style={styles.xButton} onPress={() => this._onClose()}>
有什么建议吗?
--- 代码更新 -----
<ScrollView style={styles.scrollView}>
<TouchableOpacity style={styles.xButton} onPress={() => this._onClose()}>
<Image style = {styles.xImg} source = {require('../../images/xbtn.png')}/>
</TouchableOpacity>
{this._renderPricing()}
{this._renderServices()}
</ScrollView>
并且样式看起来像这样:
scrollView:{
width: width,
height: height,
}, xButton: {
position: 'absolute',
zIndex: 1,
marginTop: '1%',
marginRight: '3%',
alignSelf: 'flex-end',
},xImg: {
resizeMode: 'contain',
aspectRatio: .6,
opacity: 0.5,
},
答案 0 :(得分:1)
问题已解决。这是由于在我的this._renderPricing
等单独的渲染方法中,我多次更改了状态?因此,JS线程被占用,因此TouchableOpacity无法响应触摸事件,请参见RN documentation,以了解更多信息。如有需要,请提供详细说明。非常感谢您的回答。