2

我想让我的应用沉浸其中看起来像下面的阅读器应用,但它不能按我的意愿工作,有人可以给我想法吗?

普通的

正常时,工具栏和状态是隐藏的。

拉动状态

拉动状态时,会出现状态。

点击进入内容

单击内容时,状态和工具栏均以精美的动画显示。 点击

这是我的代码。

private void hideStatus() {
    getWindow().getDecorView().setSystemUiVisibility(
            View.SYSTEM_UI_FLAG_LAYOUT_STABLE
                    | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
                    | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
                    | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
                    | View.SYSTEM_UI_FLAG_FULLSCREEN
                    | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
    getSupportActionBar().hide();
}

并用于handler.sendEmptyMessageDelayed()延迟。但它可以在没有任何动画的情况下工作。然后我添加<item name="android:windowActionBarOverlay">true</item>,但不起作用。

这是我的布局代码。

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/ctl_indoor"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

<LinearLayout
    android:id="@+id/ll_indoor"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    android:orientation="vertical">

</LinearLayout>

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <android.support.v7.widget.Toolbar
        android:id="@+id/tool_bar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
        app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />
</android.support.design.widget.AppBarLayout>


</android.support.design.widget.CoordinatorLayout>

PS:对不起,我的英语不好。

4

1 回答 1

0
android:fitsSystemWindows="true"

放入你的布局

<LinearLayout
xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
tools:context=".LauncherActivity"
android:fitsSystemWindows="true"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
于 2016-01-28T06:42:38.520 回答