当前位置:   article > 正文

android输入法弹出调整布局与沉浸式状态栏冲突+fitSystemWindows()被弃用问题_android:fitssystemwindows="true"之后不能沉浸式

android:fitssystemwindows="true"之后不能沉浸式

输入法弹出,界面自动响应

当输入法出现时,为确保系统将布局大小调整为可见,可使用清单的 <activity> 元素中

android:windowSoftInputMode="adjustResize"。

而为使 adjustResize元素可以成功起作用,要在activity的根布局上添加fitsSystemWindows="true"。

 

输入法弹出响应与沉浸式状态栏冲突

但如果此时页面是沉浸式状态栏状态,则会发现沉浸式失效、状态栏颜色异常。原本延伸至状态栏的显示内容,被顶了下来。

本质上是fitSystemWindows与沉浸式显示的冲突,给显示内容与状态栏之间插入了系统组件的padding距离,手动置为0即可。

网上的推荐解决办法是,重写activity根布局的viewGroup组件的fitSystemWindows()方法。

  1. @Override
  2. protected boolean fitSystemWindows(Rect insets) {
  3. insets.top = 0;
  4. return super.fitSystemWindows(insets);
  5. }

 

fitSystemWindows()方法,在高版本中被废弃

但是今天发现,在高版本中该fitSystemWindows()方法已被废弃,于是在源码方法注释中看到,推荐使用

dispatchApplyWindowInsets(WindowInsets)、
onApplyWindowInsets(WindowInsets)、
setOnApplyWindowInsetsListener(android.view.View.OnApplyWindowInsetsListener)等方法来替代。

 

在高版本新方法,dispatchApplyWindowInsets方法中,逻辑的相同实现

于是在新方法中重写 相同逻辑的实现、亲测可用:

  1. @Override
  2. public WindowInsets dispatchApplyWindowInsets(WindowInsets insets) {
  3. if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.Q) {
  4. Insets b = null;
  5. b = Insets.of(0, -insets.getSystemWindowInsets().top
  6. , 0, 0);
  7. //使两个inset.top字段相消为0
  8. Insets result = Insets.add(insets.getSystemWindowInsets(), b);
  9. WindowInsets.Builder builder=new WindowInsets.Builder(insets).setSystemWindowInsets(result);
  10. return super.dispatchApplyWindowInsets(builder.build());
  11. }
  12. return super.dispatchApplyWindowInsets(insets);
  13. }

***********************************************************************************************************************************

参考资料:

https://developer.android.google.cn/training/keyboard-input/visibility

https://www.jianshu.com/p/94072850ba58

https://blog.csdn.net/u012006926/article/details/53521198

 

 

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号