我已经尝试了所有方法,但是当我关闭键盘时,焦点也模糊了。但是当我想用户将信息粘贴到文本输入时,我不愿意显示软键盘。
<TextInput
ref='barcodeInput'
style={{height: 60,borderColor: '#000000', borderWidth: 1, width:300, fontSize:30}}
underlineColorAndroid="transparent"
onChangeText={(text) => this.setState({inputBarcode:text})}
onSubmitEditing={this.handleSubmitEditing.bind(this)}
keyboardType = {'numeric'}
/>
您可以使用
TextInput
上的showSoftInputOnFocus
道具来控制行为。
false
时,它将阻止软键盘在焦点字段时显示。默认值为true
。
文档: https://reactnative.dev/docs/textinput#showsoftinputonfocus
当false
此道具时,键盘不会打开,但输入将保持焦点。
您应该能够使用 react-native
中的 Keyboard
组件。例如:
import { Keyboard } from 'react-native'
Keyboard.dismiss()
焦点仍应保持在输入上,但软键盘将消失。