页面包含scrollView和TextInput,当键盘弹起来的时候会挡住TextInput

android的手机,页面包含scrollView和TextInput,当键盘弹起来的时候会挡住TextInput。
原生键盘模式是“ android:windowSoftInputMode="adjustResize"”。
用了如下方法解决这个问题,虽然不够完美:

componentDidMount() {
       this.keyboardDidShow = Keyboard.addListener("keyboardDidShow", e => {
           console.log("====== e.endCoordinates.height:" + e.endCoordinates.height)
           this.setState({ KeyboardHeight: e.endCoordinates.height })
       });
       this.keyboardDidHide = Keyboard.addListener("keyboardDidHide", e => {
           this.setState({ KeyboardHeight: 0 })
       });
   }

   componentWillUnmount() {
       this.keyboardDidShow.remove();
       this.keyboardDidHide.remove();
   }

render() {
       return (
           {Platform.OS == "android" && }
           ....
           

希望有更好的方法,欢迎指点。

你可能感兴趣的:(页面包含scrollView和TextInput,当键盘弹起来的时候会挡住TextInput)