嗨,当键盘在少数 android 设备上可见时,我遇到了一个天才聊天输入文本重叠问题来解决这个问题,我尝试使用键盘显示/隐藏方法,但没有工作也尝试使用键盘间隔,但没有任何效果。此问题不会在目前发生在 One plus 6、samsung A-70 android 版本 9 Oxygen OS 9.0.9 上的设备上复制。它没有完全重叠输入文本的确切问题可以说只有底部边框在键盘下方。请在图片下方找到该问题的确切概念。
问问题
477 次
1 回答
0
if (Platform.OS === 'android'){
return (
<KeyboardAvoidingView style={styles.input}>
//your <GiftedChat/> tag
</KeyboardAvoidingView>
)
}
const styles = StyleSheet.create({
input: {
flex: 1,
marginTop: 45,
marginBottom: 10,
},
});
更新
通过此链接: 键盘问题 #435
于 2020-05-27T23:36:06.923 回答