diff options
| author | 2019-08-20 02:48:37 +0000 | |
|---|---|---|
| committer | 2019-08-20 02:48:37 +0000 | |
| commit | 37bc8a96a757ce877fee4e6bc98b443e75ca590c (patch) | |
| tree | b1b5cb1580724c3db32bb6216bf619f71818ed09 | |
| parent | 72d08095da088f1a5400f9d3a23c9e7341bfdb1d (diff) | |
| parent | f59e125fa9a7fd4e627192e6aa525b4d39634c4d (diff) | |
Merge "Change the visibility of nav bar methods"
| -rw-r--r-- | packages/CarSystemUI/src/com/android/systemui/statusbar/car/CarStatusBar.java | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/packages/CarSystemUI/src/com/android/systemui/statusbar/car/CarStatusBar.java b/packages/CarSystemUI/src/com/android/systemui/statusbar/car/CarStatusBar.java index e95103bcb929..ea3cbff07ea2 100644 --- a/packages/CarSystemUI/src/com/android/systemui/statusbar/car/CarStatusBar.java +++ b/packages/CarSystemUI/src/com/android/systemui/statusbar/car/CarStatusBar.java @@ -839,7 +839,11 @@ public class CarStatusBar extends StatusBar implements CarBatteryController.Batt } } - private void attachBottomNavBarWindow() { + /** + * Attaches the bottom nav bar window. Can be extended to modify the specific behavior of + * attaching the bottom nav bar. + */ + protected void attachBottomNavBarWindow() { if (!mShowBottom) { return; } @@ -862,7 +866,11 @@ public class CarStatusBar extends StatusBar implements CarBatteryController.Batt mWindowManager.addView(mNavigationBarWindow, lp); } - private void detachBottomNavBarWindow() { + /** + * Detaches the bottom nav bar window. Can be extended to modify the specific behavior of + * detaching the bottom nav bar. + */ + protected void detachBottomNavBarWindow() { if (!mShowBottom) { return; } |