沉浸模式下键盘遮挡输入框的解决方案

来源:互联网 发布:百度人工智能ppt下载 编辑:程序博客网 时间:2024/04/23 20:11
在沉浸模式下
windowTranslucentStatus=true
或者通过代码设定
getWindow.setFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS, WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS)
 
这个时候会发现inputmode不管设置成什么,键盘出现的时候都会遮挡输入框
 
解决方案是在layout里面加上:

android:fitsSystemWindows="true"