[RN] React Native 键盘管理 在Android TextInput遮盖,上移等问题解决办法

React Native 键盘管理 在Android TextInput遮盖,上移等问题解决办法

解决办法:
打开android工程,在AndroidManifest.xml中配置如下:

<activity
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
        android:windowSoftInputMode="stateAlwaysHidden|adjustPan">

其中,红色部分为修改的值!

参考:

https://blog.csdn.net/u011690583/article/details/53808773

https://www.jianshu.com/p/950cc880c449

本博客地址: wukong1688

本文原文地址:https://www.cnblogs.com/wukong1688/p/10953977.html

转载请著名出处!谢谢~~

原文地址:https://www.cnblogs.com/wukong1688/p/10953977.html