Skip to content

Android10及以上版本,页面会被沉浸式状态栏遮挡(附上解决方法) #1691

@stars-one

Description

@stars-one

描述 Bug

Android10及以上版本,页面会被沉浸式状态栏遮挡

截图

图片链接: https://img2022.cnblogs.com/blog/1210268/202208/1210268-20220823163646914-1711712615.png

解决方法

BarUtils.setStatusBarColor(CustomWebViewActivity.this, color, true);
//加上下面这两行
ViewGroup contentParent = CustomWebViewActivity.this.findViewById(android.R.id.content);
contentParent.getChildAt(0).setFitsSystemWindows(true);

或者在布局xml的根布局加上下面属性:

android:fitsSystemWindows="true"

希望作者可以抽空调整下,感谢

Metadata

Metadata

Assignees

Labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions