我已经尝试了所有方法,但是当我关闭键盘时焦点也会模糊。但是当我希望用户将信息粘贴到 TextInput 时,我不愿意显示软键盘。
<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'}
/>
Run Code Online (Sandbox Code Playgroud) react-native ×1