Home
last modified time | relevance | path

Searched refs:getBottomWindow (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Car/SystemUI/tests/src/com/android/systemui/car/systembar/
DCarSystemBarControllerTest.java188 ViewGroup window = mCarSystemBar.getBottomWindow(); in testGetBottomWindow_bottomDisabled_returnsNull()
198 ViewGroup window = mCarSystemBar.getBottomWindow(); in testGetBottomWindow_bottomEnabled_returnsWindow()
208 ViewGroup window1 = mCarSystemBar.getBottomWindow(); in testGetBottomWindow_bottomEnabled_calledTwice_returnsSameWindow()
209 ViewGroup window2 = mCarSystemBar.getBottomWindow(); in testGetBottomWindow_bottomEnabled_calledTwice_returnsSameWindow()
301 ViewGroup window = mCarSystemBar.getBottomWindow(); in testSetBottomWindowVisibility_setTrue_isVisible()
312 ViewGroup window = mCarSystemBar.getBottomWindow(); in testSetBottomWindowVisibility_setFalse_isGone()
/packages/apps/Car/SystemUI/src/com/android/systemui/car/systembar/
DCarSystemBarController.java127 public ViewGroup getBottomWindow() { in getBottomWindow() method in CarSystemBarController
128 return mShowBottom ? mCarSystemBarViewFactory.getBottomWindow() : null; in getBottomWindow()
150 return setWindowVisibility(getBottomWindow(), visibility); in setBottomWindowVisibility()
DCarSystemBarViewFactory.java91 public ViewGroup getBottomWindow() { in getBottomWindow() method in CarSystemBarViewFactory
DCarSystemBar.java334 mBottomSystemBarWindow = mCarSystemBarController.getBottomWindow(); in buildNavBarWindows()