如果我点击一个文本输入,我希望能够点击其他地方以便再次关闭键盘(虽然不是回车键)。在我阅读的所有教程和博客文章中,我都没有找到与此相关的丝毫信息。
在Simulator中使用本机0.4.2时,此基本示例仍不适用于我。还无法在我的iPhone上尝试。
<View style={styles.container}>
<Text style={styles.welcome}>
Welcome to React Native!
</Text>
<Text style={styles.instructions}>
To get started, edit index.ios.js
</Text>
<Text style={styles.instructions}>
Press Cmd+R to reload,{'\n'}
Cmd+D or shake for dev menu
</Text>
<TextInput
style={{height: 40, borderColor: 'gray', borderWidth: 1}}
onEndEditing={this.clearFocus}
/>
</View>
试试看
keyboard.dismiss()
。对我有用