如何在React-Native中获得键盘的高度?

问题描述 投票:19回答:1

我在我的应用程序中使用React-Navigation,该应用程序包含多个屏幕的StackNavigator,其中一些屏幕具有带有autoFocus={true}的TextInput

问题:在组件渲染时在这些屏幕上,屏幕的高度在构造函数中设置:

constructor(props) {
    super(props);
    this.state = { 
        height: Dimensions.get('window').height,
    };
}

但是,由于TextInput的autoFocustrue,因此在渲染后,屏幕上的键盘几乎立即弹出,导致组件重新渲染,因为在componentWillMount中添加到Keyboard的eventListener:

 componentWillMount() {
    this.keyboardWillShowListener = Keyboard.addListener(
        "keyboardWillShow",
        this.keyboardWillShow.bind(this)
    );
}

keyboardWillShow(e) {
    this.setState({
        height:
            Dimensions.get("window").height * 0.9 - e.endCoordinates.height
    });
    LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut);
}

这会影响性能,我希望避免不必要的重新渲染。

问题: 1.是否可以在React-Navigation的ScreenProps中设置键盘的动态高度(取决于设备)? 2. React-Navigation的state.params是否可以这样做? 3.除了应用KeyboardAvoidingView或this module之外,还有其他方法可以解决这个问题吗?

javascript react-native keyboard react-navigation
1个回答
39
投票

这就是我做的:

如果应用程序具有“授权/登录/注册屏幕”,则:

  1. 在componentWillMount中添加KeyboardListeners,如here所述: this.keyboardDidShowListener = Keyboard.addListener('keyboardDidShow', this._keyboardDidShow); this.keyboardDidHideListener = Keyboard.addListener('keyboardDidHide', this._keyboardDidHide);
  2. autoFocus添加到页面上的电子邮件/电话号码/任何其他“第一个”TextInput,以便在加载屏幕时弹出键盘。
  3. _keyboardDidShow函数中,用作KeyboardListener,执行以下操作: _keyboardDidShow(e) { this.props.navigation.setParams({ keyboardHeight: e.endCoordinates.height, normalHeight: Dimensions.get('window').height, shortHeight: Dimensions.get('window').height - e.endCoordinates.height, }); } Dimensions是React-Native的API,不要忘记导入它就像导入任何React-Native组件一样。
  4. 在那之后,在重定向到下一页时,传递这些参数并且不要忘记继续将它们传递到其他屏幕以便不丢失这些数据: this.props.navigation.navigate('pageName', { params: this.props.navigation.state.params });
© www.soinside.com 2019 - 2024. All rights reserved.