我正在开发一个关于本机反应的应用程序。我想在按下文本输入时调用日期选择器,并在选择应显示在文本输入上的日期后
问问题
13813 次
4 回答
30
包装TextInput
成一个视图并设置pointerEvents
为none
. 现在您可以使用Pressable
组件 fromreact-native
来监听onpress
事件。
<Pressable onPress={() => alert('Hi!')}>
<View pointerEvents="none">
<TextInput />
</View>
</Pressable>
于 2020-11-19T12:02:46.157 回答
16
您不能明确onPress
要求TextInput
. 你只能用。onFocus
当您按下输入框以将光标移到那里时将调用它。无需关注 onBlur,因为您的用例不需要。. onFocus
如果可能,在内部处理。
onFocus = () => {
// do something
}
render() {
<TextInput onFocus={onFocus} />
}
于 2019-02-15T11:17:50.237 回答
1
你要做的是使用 TextInput 的 onFocus 和 onBlur。
<TextInput
onFocus={this.onFocus}
onBlur={this.onBlur}
/>
onFocus = () => {
// Open date picker
}
onBlur = () => {
// Close date picker and add value to textinput
}
于 2019-02-15T11:07:50.310 回答
0
您可以通过提供使文本输入字段只读
editable={false}
pointerEvents="none"
支持 TextInput。
于 2021-10-20T09:57:23.840 回答