作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的应用程序中,我有一个嵌套的 Touchable 元素。每次我按下其中一个,我只得到一个事件。我可以将内部向下传播到层吗?提前致谢!
代码如下:
<TouchableHighlight style={{ flex: 1 }} onPress={() => { console.log('outer press') }}>
<TouchableHighlight style={{ flex: 0.8, backgroundColor: 'blue' }} onPress={() => { console.log('inner press') }}>
<Text>1</Text>
</TouchableHighlight>
</TouchableHighlight>
最佳答案
Touchables
包含一个本地状态,这是它 native 的,而其他 Touchables
则不知道它。
因此,当您触摸嵌套的 Touchable
时,事件会传播到访问该状态的子元素,并且除非完成,否则不会释放资源
这将是您的情况下嵌套按钮
的生命周期,如 docs
中所述。
Parent: Parent Touchable
Child: Child Touchable
Parent onStartShouldSetResponder > Parent onResponderGrant > Parent onResponderTerminationRequest > Parent onResponderTerminate > Child onStartShouldSetResponder > Child onResponderGrant > Child onResponderRelease
由于 onResponderReject
,父级将无法访问
If a parent
View
wants to prevent the child from becoming responder on a touch start, it should have aonStartShouldSetResponderCapture
handler which returnstrue
.
你可以看看这个video
关于reactjs - 如何在 React Native 中的嵌套 Touchable 中传播触摸事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49835883/
我是一名优秀的程序员,十分优秀!