Home
last modified time | relevance | path

Searched refs:SystemBarConfigs (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Car/SystemUI/tests/src/com/android/systemui/car/systembar/
DSystemBarConfigsTest.java62 private SystemBarConfigs mSystemBarConfigs;
74 mSystemBarConfigs = new SystemBarConfigs(mResources); in onInit_allSystemBarsEnabled_eachHasUniqueBarTypes_doesNotThrowException()
82 mSystemBarConfigs = new SystemBarConfigs(mResources); in onInit_allSystemBarsEnabled_twoBarsHaveDuplicateType_throwsRuntimeException()
87 mSystemBarConfigs = new SystemBarConfigs(mResources); in onInit_allSystemBarsEnabled_systemBarSidesSortedByZOrder()
90 expectedOrder.add(SystemBarConfigs.LEFT); in onInit_allSystemBarsEnabled_systemBarSidesSortedByZOrder()
91 expectedOrder.add(SystemBarConfigs.RIGHT); in onInit_allSystemBarsEnabled_systemBarSidesSortedByZOrder()
92 expectedOrder.add(SystemBarConfigs.TOP); in onInit_allSystemBarsEnabled_systemBarSidesSortedByZOrder()
93 expectedOrder.add(SystemBarConfigs.BOTTOM); in onInit_allSystemBarsEnabled_systemBarSidesSortedByZOrder()
103 mSystemBarConfigs = new SystemBarConfigs(mResources); in onInit_intersectingBarsHaveSameZOrder_throwsRuntimeException()
113 mSystemBarConfigs = new SystemBarConfigs(mResources); in onInit_hideBottomSystemBarForKeyboardValueDoNotSync_throwsRuntimeException()
[all …]
DCarSystemBarTest.java149 new SystemBarConfigs(mTestableResources.getResources())); in setUp()
DCarSystemBarControllerTest.java93 new SystemBarConfigs(mTestableResources.getResources())); in createSystemBarController()
/packages/apps/Car/SystemUI/src/com/android/systemui/car/systembar/
DCarSystemBar.java83 private final SystemBarConfigs mSystemBarConfigs;
136 SystemBarConfigs systemBarConfigs in CarSystemBar()
159 mHideTopBarForKeyboard = mSystemBarConfigs.getHideForKeyboardBySide(SystemBarConfigs.TOP); in start()
161 SystemBarConfigs.BOTTOM); in start()
162 mHideLeftBarForKeyboard = mSystemBarConfigs.getHideForKeyboardBySide(SystemBarConfigs.LEFT); in start()
164 SystemBarConfigs.RIGHT); in start()
342 mSystemBarConfigs.insetSystemBar(SystemBarConfigs.TOP, mTopSystemBarView); in buildNavBarContent()
348 mSystemBarConfigs.insetSystemBar(SystemBarConfigs.BOTTOM, mBottomSystemBarView); in buildNavBarContent()
354 mSystemBarConfigs.insetSystemBar(SystemBarConfigs.LEFT, mLeftSystemBarView); in buildNavBarContent()
360 mSystemBarConfigs.insetSystemBar(SystemBarConfigs.RIGHT, mRightSystemBarView); in buildNavBarContent()
[all …]
DCarSystemBarController.java69 SystemBarConfigs systemBarConfigs) { in CarSystemBarController()
79 mShowTop = systemBarConfigs.getEnabledStatusBySide(SystemBarConfigs.TOP); in CarSystemBarController()
80 mShowBottom = systemBarConfigs.getEnabledStatusBySide(SystemBarConfigs.BOTTOM); in CarSystemBarController()
81 mShowLeft = systemBarConfigs.getEnabledStatusBySide(SystemBarConfigs.LEFT); in CarSystemBarController()
82 mShowRight = systemBarConfigs.getEnabledStatusBySide(SystemBarConfigs.RIGHT); in CarSystemBarController()
DSystemBarConfigs.java52 public class SystemBarConfigs { class
54 private static final String TAG = SystemBarConfigs.class.getSimpleName();
94 public SystemBarConfigs(@Main Resources resources) { in SystemBarConfigs() method in SystemBarConfigs