android输入法弹出调整布局与沉浸式状态栏冲突+fitSystemWindows()被弃用问题

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

当输入法出现时,为确保系统将布局大小调整为可见,可使用清单的 <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()方法,在高版本中被废弃

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

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

 

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

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

    @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

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值