React原生Android键盘自定义高度

时间:2016-10-01 18:13:53

标签: android keyboard react-native react-native-android

Android键盘会显示建议区域,并隐藏textbox下方的图标。 如何在Android中更多地移动窗口? 在iOS我可以自定义要向上移动的高度。 我可以在Android中执行此操作吗? 如果这不可能,我怎么能禁用键盘建议区域? 我附上了两个截图。

没有键盘

Without Keyboard

显示键盘

Keybaord hides the icons below textbox

2 个答案:

答案 0 :(得分:0)

我不确定你能在android中做到这一点,几乎所有的键盘都会一样,但是你可以尝试使用RedrawKeyboard,它是一个键盘自定义应用程序,它可能会起作用。

答案 1 :(得分:0)

也许使用KeyboardAvoidingView组件可以帮助您避免使用整个键盘。

尝试这样的事情:

import { Platform, KeyboardAvoidingView } from 'react-native';

<KeyboardAvoidingView
  behavior={Platform.select({ ios: 'padding' })}
/>
  ....rest of the code
</KeyboardAvoidingView>