重点关注文本输入时,在文本输入和键盘之间保持较小的距离

时间:2018-06-27 09:18:30

标签: android react-native keyboard

我的屏幕上有多个textInputs,当textinput处于焦点状态时,键盘出现,并且内容很好地向上移动。

目前,这种表情类似于

目前,这对于用户来说是令人困惑的,如果textInput和Keyboard之间有一些差距,看起来会更好。有没有办法做到这一点。谢谢

注意:整个东西都在ScrollView中。

1 个答案:

答案 0 :(得分:0)

尝试使用 KeyboardAvoidingView

喜欢

import { KeyboardAvoidingView } from 'react-native';

<KeyboardAvoidingView style={styles.container} behavior="padding" enabled>
  ... your UI ...
</KeyboardAvoidingView>

https://facebook.github.io/react-native/docs/keyboardavoidingview.html