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

Commit eb0b0943 authored by Matthew Ng's avatar Matthew Ng
Browse files

Dump the dark intensity with NavigationBarView

adb shell dumpsys activity service com.android.systemui

Test: manual
Change-Id: Ic771a081f8a1c69dccfc6a8a36c4fa69da9195ed
Fixes: 117678010
parent 7cc5a53c
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1100,10 +1100,11 @@ public class NavigationBarView extends FrameLayout implements PluginListener<Nav
                        visibilityToString(getCurrentView().getVisibility()),
                        getCurrentView().getAlpha()));

        pw.println(String.format("      disabled=0x%08x vertical=%s menu=%s",
        pw.println(String.format("      disabled=0x%08x vertical=%s menu=%s darkIntensity=%.2f",
                        mDisabledFlags,
                        mVertical ? "true" : "false",
                        getMenuButton().isVisible() ? "true" : "false"));
                        getMenuButton().isVisible() ? "true" : "false",
                        getLightTransitionsController().getCurrentDarkIntensity()));

        dumpButton(pw, "back", getBackButton());
        dumpButton(pw, "home", getHomeButton());