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

Commit af92c510 authored by Chih-Chung Chang's avatar Chih-Chung Chang Committed by Android (Google) Code Review
Browse files

Merge "Fix 5585254: Make system UI enter "low profile mode" while playing." into ics-mr1

parents 8cfe549a 5383c573
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -162,7 +162,8 @@ public class MoviePlayer implements
    }

    private void showSystemUi(boolean visible) {
        int flag = visible ? 0 : View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
        int flag = visible ? 0 : View.SYSTEM_UI_FLAG_HIDE_NAVIGATION |
                View.SYSTEM_UI_FLAG_LOW_PROFILE;
        mVideoView.setSystemUiVisibility(flag);
    }