反应本机有天赋聊天的输入由键盘覆盖

时间:2019-01-29 19:01:38

标签: reactjs keyboard chat native

我遇到了Android版本的问题。

我在应用聊天中使用有天赋的聊天。但是文本输入被键盘覆盖了,所以我看不到我在输入什么。

我正在使用本机版本0.51。我已经遵循了几种解决方案,但仍然无法正常工作。

我尝试了使用keyboardAvoidingView的this solution,还添加了KeyboardSpacer,它也无法正常工作。

任何建议都是非常好的。

这是我的渲染组件代码

render() {
console.log(this.state);
return (
  <View style={{flex: 1}}>
    <GiftedChat
      messages={this.state.messages}
      onSend={Fire.shared.send}
      loadEarlier={this.state.loadEarlier}
      isLoadingEarlier={this.state.isLoadingEarlier}

      user={{
        name: this.props.profile.name,
        _id: this.props.profile.user_id,
        avatar: this.props.profile.profile_image
      }}

      renderUsernameOnMessage={true}
      renderActions={this.renderCustomActions}
      renderAvatar={this.renderAvatar}
      renderBubble={this.renderBubble}
      renderSend={this.renderSend}
      renderSystemMessage={this.renderSystemMessage}
      renderCustomView={this.renderCustomView}
      renderFooter={this.renderFooter}
      keyboardShouldPersistTaps={'always'}
    />
    <KeyboardSpacer/>
  </View>
)}

4 个答案:

答案 0 :(得分:0)

请添加以下样式:

paddingHorizontal: 20,

答案 1 :(得分:0)

在Android设备上,React Native Gifted Chat和Expo似乎是一个常见问题。

打开键盘后,您可以使用react-native-keyboard-spacer包使内容可见:

import React, { Component } from 'react';
import { View, Platform } from 'react-native';
import KeyboardSpacer from 'react-native-keyboard-spacer';
import { GiftedChat } from 'react-native-gifted-chat';

export default class Chat extends Component {
  render() {
    const giftedChatMessages = [
      ...
    ];
    return (
      <View style={{flex: 1}}>
        <GiftedChat
          messages={giftedChatMessages}
          onSend={newMessages => onSend(newMessages[0].text)}
          user={{
              _id: 1,
          }}
          renderAvatar={() => null}
        />
        {Platform.OS === 'android' ? <KeyboardSpacer /> : null }
      </View>   
    )
  }
}

答案 2 :(得分:0)

我也有同样的问题。我通过在 AndroidManifest.xml 文件中添加android:windowSoftInputMode="adjustResize"来解决此问题,如下所示:

<application
  android:name=".MainApplication"
  android:label="@string/app_name"
  ...
  ...
  >
  <activity
    android:name=".MainActivity"
    ...
    ...
    android:windowSoftInputMode="adjustResize" <!-- add here -->
  >
    ...
  </activity>
  ...
</application>

答案 3 :(得分:0)

那呢:

import { KeyboardAvoidingView } from 'react-native';

<View style={{ flex: 1 }}>
  <GiftedChat
    messages={this.state.messages}
    onSend={messages => this.onSend(messages)}
    user={{
      _id: 1,
    }}
  />
  {Platform.OS === 'android' && <KeyboardAvoidingView behavior="padding" />}
</View>;