【发布时间】:2017-07-29 01:53:29
【问题描述】:
我只是按照链接react-native: hide keyboard的答案
但是键盘会在几秒钟内闪烁,然后消失。有没有办法完全避免键盘。
【问题讨论】:
标签: javascript android ios reactjs react-native
我只是按照链接react-native: hide keyboard的答案
但是键盘会在几秒钟内闪烁,然后消失。有没有办法完全避免键盘。
【问题讨论】:
标签: javascript android ios reactjs react-native
This 帮助了我:
import { Keyboard } from 'react-native'
// Hide that keyboard!
Keyboard.dismiss();
【讨论】:
正确的方法是使用 TouchableWithoutFeedback 关闭 View 并调用 Keyboard.dismiss()
import {Keyboard} from 'react-native'
<TouchableWithoutFeedback onPress={Keyboard.dismiss}>
<View style={styles.container}>
<TextInput keyboardType='numeric'/>
</View>
</TouchableWithoutFeedback>
【讨论】: