当用户点击textInput时,React Native Android键盘立即关闭

时间:2019-09-21 08:03:19

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

当用户点击textInput时,键盘立即关闭

我有几个包含textInput的屏幕,但这仅发生在其中一个屏幕上,并且仅在Android平台上发生。

我显示的脚本很简单,因为我删除了所有其他代码以仅测试键盘和textInput,但错误仍然存​​在。但是,我将这个脚本的相同代码单独粘贴到一个新项目中,效果很好。

希望你能帮助我。

  <View>
  <Text>NAME</Text>
  <TextInput
    style={{
      paddingVertical: 0,
      textAlignVertical: 'center',
      height: 30,
      width: 60,
      fontSize: 30,
      color: '#E1E1F2',
      borderBottomWidth: 1,
      borderBottomColor: '#6B778A',
      justifyContent: 'center',
    }}
    // onChangeText={(text => this.setState({ nameInput: text }))}
    // value={this.state.nameInput}
    placeholderTextColor={'#6B778A'}
    underlineColorAndroid='transparent'
    enablesReturnKeyAutomatically={true} 
    />
    </View>

预期行为:

用户点击textInput时不隐藏键盘

实际行为:

当用户点击textInput时,键盘出现,但立即关闭,我已经分别测试了所有插件,但可以找到原因。

Screen record here

Full script in image

0 个答案:

没有答案