赞
踩
当输入法出现时,为确保系统将布局大小调整为可见,可使用清单的 <activity>
元素中
android:windowSoftInputMode="adjustResize"。
而为使 adjustResize元素可以成功起作用,要在activity的根布局上添加fitsSystemWindows="true"。
但如果此时页面是沉浸式状态栏状态,则会发现沉浸式失效、状态栏颜色异常。原本延伸至状态栏的显示内容,被顶了下来。
本质上是fitSystemWindows与沉浸式显示的冲突,给显示内容与状态栏之间插入了系统组件的padding距离,手动置为0即可。
网上的推荐解决办法是,重写activity根布局的viewGroup组件的fitSystemWindows()方法。
- @Override
- protected boolean fitSystemWindows(Rect insets) {
- insets.top = 0;
- return super.fitSystemWindows(insets);
- }
但是今天发现,在高版本中该fitSystemWindows()方法已被废弃,于是在源码方法注释中看到,推荐使用
dispatchApplyWindowInsets(WindowInsets)、
onApplyWindowInsets(WindowInsets)、
setOnApplyWindowInsetsListener(android.view.View.OnApplyWindowInsetsListener)等方法来替代。
于是在新方法中重写 相同逻辑的实现、亲测可用:
- @Override
- public WindowInsets dispatchApplyWindowInsets(WindowInsets insets) {
- if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.Q) {
- Insets b = null;
- b = Insets.of(0, -insets.getSystemWindowInsets().top
- , 0, 0);
- //使两个inset.top字段相消为0
- Insets result = Insets.add(insets.getSystemWindowInsets(), b);
- WindowInsets.Builder builder=new WindowInsets.Builder(insets).setSystemWindowInsets(result);
- return super.dispatchApplyWindowInsets(builder.build());
- }
- return super.dispatchApplyWindowInsets(insets);
- }
***********************************************************************************************************************************
参考资料:
https://developer.android.google.cn/training/keyboard-input/visibility
https://www.jianshu.com/p/94072850ba58
https://blog.csdn.net/u012006926/article/details/53521198
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。