如何禁用按下TextInput时出现的选项按钮,而直接显示键盘?

问题描述 投票:0回答:1

在react-native android中,当我点击键盘时,屏幕底部会弹出一个带有动画的按钮,如ss所示:

enter image description here

当我单击时,它会显示这些选项,我可以在其中手动按 showKeyboard 按钮,然后它会显示键盘:

enter image description here

但我希望当我聚焦 TextInput 时只出现键盘,而不是底部选项按钮。我怎样才能做到这一点?

android react-native keyboard
1个回答
0
投票

这是一个新的键盘功能,在谷歌像素模拟器中默认启用。要解决这个问题,你只需要这样做。

enter image description here

  1. 点击如图所示的设置或使用快捷键

    Alt + I
    进入设置。

  2. 在“设置”菜单中,您将看到一个名为“

    Write in Text Fields
    ”的选项,如下所示。

enter image description here

  1. 只要禁用它,您的问题就可以解决。

enter image description here

  1. 然后你就会有一个普通的键盘了。

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.