TouchableNativeFeedback
If you're looking for a more extensive and future-proof way to handle touch-based input, check out the Pressable API.
本组件用于封装视图,使其可以正确响应触摸操作(仅限 Android 平台)。在 Android 设备上,这个组件利用原生状态来渲染触摸的反馈。
目前它只支持一个单独的 View 实例作为子节点。在底层实现上,实际会创建一个新的 RCTView 节点替换当前的子 View,并附带一些额外的属性。
原生触摸操作反馈的背景可以使用background
属性来自定义。
示例
文档
Props
Inherits TouchableWithoutFeedback Props.
background
决定在触摸反馈的时候显示什么类型的背景。它接受一个有着type
属性和一些基于type
属性的额外数据的对象。我们推荐选用本组件的几个静态方法来创建这个对象。
类型 | 必需 |
---|---|
backgroundPropType | 否 |
useForeground
Set to true to add the ripple effect to the foreground of the view, instead of the background. This is useful if one of your child views has a background of its own, or you're e.g. displaying images, and you don't want the ripple to be covered by them.
Check TouchableNativeFeedback.canUseNativeForeground() first, as this is only available on Android 6.0 and above. If you try to use this on older versions you will get a warning and fallback to background.
类型 | 必需 |
---|---|
bool | 否 |