Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ac2671e4 authored by Galia Peycheva's avatar Galia Peycheva Committed by Automerger Merge Worker
Browse files

Merge "Hide all insets when the dream is activated" into rvc-dev am: 8c224313 am: f781df06

Change-Id: Ie9f5559925925b4d4939c0a22e409bbafb641dd2
parents 9f93dc00 f781df06
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@ package android.service.dreams;
import android.annotation.Nullable;
import android.app.Activity;
import android.os.Bundle;
import android.view.WindowInsets;

/**
 * The Activity used by the {@link DreamService} to draw screensaver content
@@ -55,5 +56,8 @@ public class DreamActivity extends Activity {
        if (callback != null) {
            callback.onActivityCreated(this);
        }

        // Hide all insets (nav bar, status bar, etc) when the dream is showing
        getWindow().getInsetsController().hide(WindowInsets.Type.systemBars());
    }
}