为什么在我的本机应用程序中按下每个键后键盘消失?

时间:2018-08-19 20:33:14

标签: reactjs react-native

我的代码的主要部分在下面,基本上,它允许用户选择一个国家并输入他们的电话号码。一旦电话号码被确认为有效,图标的颜色就会更改。唯一的问题是,每次按数字键盘上的一个键时,键盘都会继续消失。这是一个示例:

enter image description here

这是电话登录屏幕中的源代码。没有onChangePhoneNumber={ (phone) => {this.updateInfo()} }行,键入时键盘不会消失,但是键入有效数字时,下一个图标将不会变为蓝色阴影。该功能会根据用户类型更新状态。

import React, { Component } from 'react';
import { View, Text, StyleSheet, TouchableOpacity, TextInput, Keyboard} from 'react-native';
import { Icon } from 'react-native-elements';

import KeyboardAccessory from 'react-native-sticky-keyboard-accessory';
import PhoneInput from 'react-native-phone-input';

export default class PhoneLogin extends Component {

    constructor() {
        super();

        this.state = {
            valid: "",
            type: "",
            value: "",
            iconColor: "#D3D3D3",
        };

        this.updateInfo = this.updateInfo.bind(this);
    }

    updateInfo() {
        this.setState({
            valid: this.phone.isValidNumber(),
            type: this.phone.getNumberType(),
            value: this.phone.getValue().replace(/[- )(]/g,''),
        });
    }

    render() {
        return (
          <View style={styles.container}>
            <PhoneInput
              ref={ref => {
                this.phone = ref;
              }}
              style={{height: 50, borderColor:'#44c0b9', borderBottomWidth:2}}
              onChangePhoneNumber={ (phone) => {this.updateInfo()} }
            />

            <KeyboardAccessory backgroundColor="#fff">
                <View style={{ alignItems: 'flex-end', padding:10 }}>
                    <Icon
                        raised
                        reverse
                        color={(this.state.valid) ? "#44c0b9" : "#D3D3D3"}
                        name='arrow-right'
                        type='font-awesome'
                        onPress={ Keyboard.dismiss()}
                    />
                </View>
            </KeyboardAccessory>
          </View>
        );
    }

}

1 个答案:

答案 0 :(得分:0)

程序包react-native-phone-input具有称为focus的功能,该功能基本上将重点放在文本输入上。在我的代码this.phone = ref;中,因此当我运行this.phone.focus()时,文本输入将处于焦点状态,并且会显示键盘。为了防止键盘消失,我要做的就是添加以下功能。

componentDidMount(){
    this.phone.focus()
}