使用 React native 以编程方式显示键盘
Posted
技术标签:
【中文标题】使用 React native 以编程方式显示键盘【英文标题】:Show keyboard programmatically using React native 【发布时间】:2016-12-23 20:32:03 【问题描述】:如何使用 react native 以编程方式显示 TextInput 的键盘?使用 ScrollView,在 TextInput 之间点击会导致键盘被关闭。我想使用 TextInput 的 onFocus 方法再次显示键盘。无论如何要做到这一点?
【问题讨论】:
【参考方案1】:考虑参考您的 textInput :
<TextInput ref=(ref)=>this.myTextInput = ref />
当你必须再次关注它时,请使用:this.myTextInput.focus()
编辑 React16
对于 react16,使用 React.createRef
创建引用。
【讨论】:
【参考方案2】:您的 ScrollView 需要包含 keyboardShouldPersistTaps 属性:
<ScrollView keyboardShouldPersistTaps></ScrollView>
【讨论】:
<ScrollView keyboardShouldPersistTaps='always'></ScrollView>
实际上<ScrollView keyboardShouldPersistTaps='handled'></ScrollView>
提供了更好的用户体验——用户可以通过点击任何其他“可点击”的 UI 元素来关闭键盘。【参考方案3】:
没有 ScrollView 仅适用于 ios。 将此组件放在您需要键盘出现的代码周围:
<ScrollView keyboardShouldPersistTaps='always'>
</ScrollView>
链接:https://reactnative.dev/docs/scrollview#keyboardshouldpersisttaps
【讨论】:
以上是关于使用 React native 以编程方式显示键盘的主要内容,如果未能解决你的问题,请参考以下文章
React Native:登录或注销时如何以编程方式刷新应用程序?