您可以尝试android:fitsSystemWindows="true"
从 ImageView 中删除,并进行onResume()
如下更改:
@Override
protected void onCreate(Bundle savedInstanceState) {
....
mRootView = (CoordinatorLayout) findViewById(R.id.coordinatorLayout);
....
}
public void hideBars() {
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_FULLSCREEN
| View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
mRootView.setFitsSystemWindows(false);
}
这mRootView.setFitsSystemWindows(false);
对于将子视图适合全屏很重要。
如果没有这个调用,布局看起来好像状态栏和导航栏仍然存在。如下图所示:
没有 setFitsSystemWindows(false) 的屏幕截图
通过这个电话:
带有 setFitsSystemWindows(false) 的屏幕截图
我认为,原因是当fitsSystemWindows
为真时,CoordinatorLayout
将为状态栏和导航栏保留空间,以便与其他绘制栏背景的小部件一起使用。但是当我们隐藏 System UI bar 时,不需要预留空间,因此我们需要告诉CoordinatorLayout
释放空间给其他子视图。
以下是屏幕截图中的布局
活动布局:
<android.support.design.widget.CoordinatorLayout
android:id="@+id/coordinatorLayout"
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:background="@android:color/black"
android:fitsSystemWindows="true"
tools:context="org.hamster.carz.MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/frag_container"/>
<!-- Just a empty FrameLayout -->
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
android:src="@mipmap/car_add" />
</android.support.design.widget.CoordinatorLayout>
上面截图中的片段:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="2"
android:orientation="vertical">
<Button
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginBottom="2dp"
android:layout_weight="1"
android:background="@drawable/controller_button"/>
<Button
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="2dp"
android:layout_weight="1"
android:background="@drawable/controller_button"/>
</LinearLayout>
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="12dp"
android:layout_weight="1">
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab_disconnect"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_margin="@dimen/fab_margin"
android:src="@mipmap/ic_clear"
app:backgroundTint="@color/colorAccentDark"/>
</FrameLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="2"
android:orientation="vertical">
<Button
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginBottom="2dp"
android:layout_weight="1"
android:background="@drawable/controller_button"/>
<Button
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="2dp"
android:layout_weight="1"
android:background="@drawable/controller_button"/>
</LinearLayout>
</LinearLayout>
希望这可以帮助。