考虑添加
android:fitsSystemWindows="true"
到根布局。或者你的根
theme
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:background="@color/BackGround"
tools:context=".ReportError">
fitsSystemWindows
它设置视图的填充以确保内容不会重叠
系统窗口。