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

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

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-06
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-03
猜你喜欢
  • 2021-10-01
  • 2022-12-23
  • 2022-01-14
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-12
相关资源
相似解决方案