Searched refs:CarSystemBarView (Results 1 – 11 of 11) sorted by relevance
/packages/apps/Car/SystemUI/src/com/android/systemui/car/systembar/ |
D | CarSystemBarController.java | 105 private CarSystemBarView mTopView; 106 private CarSystemBarView mBottomView; 107 private CarSystemBarView mLeftView; 108 private CarSystemBarView mRightView; 326 for (CarSystemBarView barView : getAllAvailableSystemBarViews()) { in setDisabledSystemBarButton() 334 for (CarSystemBarView barView : getAllAvailableSystemBarViews()) { in setDisabledSystemBarContainer() 350 public CarSystemBarView getTopBar(boolean isSetUp) { in getTopBar() 375 public CarSystemBarView getBottomBar(boolean isSetUp) { in getBottomBar() 390 public CarSystemBarView getLeftBar(boolean isSetUp) { in getLeftBar() 404 public CarSystemBarView getRightBar(boolean isSetUp) { in getRightBar() [all …]
|
D | CarSystemBarViewFactory.java | 65 private final ArrayMap<Type, CarSystemBarView> mCachedViewMap = new ArrayMap<>( 122 public CarSystemBarView getTopBar(boolean isSetUp) { in getTopBar() 130 public CarSystemBarView getBottomBar(boolean isSetUp) { in getBottomBar() 138 public CarSystemBarView getLeftBar(boolean isSetUp) { in getLeftBar() 143 public CarSystemBarView getRightBar(boolean isSetUp) { in getRightBar() 170 private CarSystemBarView getBar(boolean isSetUp, Type provisioned, Type unprovisioned) { in getBar() 171 CarSystemBarView view = getBarCached(isSetUp, provisioned, unprovisioned); in getBar() 182 private CarSystemBarView getBarCached(boolean isSetUp, Type provisioned, Type unprovisioned) { in getBarCached() 193 CarSystemBarView view = (CarSystemBarView) View.inflate(mContext, barLayout, in getBarCached()
|
D | CarSystemBarView.java | 51 public class CarSystemBarView extends LinearLayout { class 58 private static final String TAG = CarSystemBarView.class.getSimpleName(); 83 public CarSystemBarView(Context context, AttributeSet attrs) { in CarSystemBarView() method in CarSystemBarView
|
D | CarSystemBar.java | 141 private CarSystemBarView mTopSystemBarView; 142 private CarSystemBarView mBottomSystemBarView; 143 private CarSystemBarView mLeftSystemBarView; 144 private CarSystemBarView mRightSystemBarView;
|
D | SystemBarConfigs.java | 170 protected void insetSystemBar(@SystemBarSide int side, CarSystemBarView view) { in insetSystemBar()
|
/packages/apps/Car/SystemUI/tests/src/com/android/systemui/car/systembar/ |
D | CarSystemBarControllerTest.java | 402 CarSystemBarView bottomBar = mCarSystemBar.getBottomBar(/* isSetUp= */ true); in testRegisterBottomBarTouchListener_createViewFirst_registrationSuccessful() 419 CarSystemBarView bottomBar = mCarSystemBar.getBottomBar(/* isSetUp= */ true); in testRegisterBottomBarTouchListener_registerFirst_registrationSuccessful() 431 CarSystemBarView bottomBar = mCarSystemBar.getBottomBar(/* isSetUp= */ true); in testRegisterNotificationController_createViewFirst_registrationSuccessful() 449 CarSystemBarView bottomBar = mCarSystemBar.getBottomBar(/* isSetUp= */ true); in testRegisterNotificationController_registerFirst_registrationSuccessful() 461 CarSystemBarView bottomBar = mCarSystemBar.getBottomBar(/* isSetUp= */ true); in testRegisterHvacController_createViewFirst_registrationSuccessful() 478 CarSystemBarView bottomBar = mCarSystemBar.getBottomBar(/* isSetUp= */ true); in testRegisterHvacController_registerFirst_registrationSuccessful() 488 CarSystemBarView bottomBar = mCarSystemBar.getBottomBar(/* isSetUp= */ true); in testShowAllNavigationButtons_bottomEnabled_bottomNavigationButtonsVisible() 500 CarSystemBarView bottomBar = mCarSystemBar.getBottomBar(/* isSetUp= */ true); in testShowAllNavigationButtons_bottomEnabled_bottomKeyguardButtonsGone() 512 CarSystemBarView bottomBar = mCarSystemBar.getBottomBar(/* isSetUp= */ true); in testShowAllNavigationButtons_bottomEnabled_bottomOcclusionButtonsGone() 524 CarSystemBarView bottomBar = mCarSystemBar.getBottomBar(/* isSetUp= */ true); in testShowAllKeyguardButtons_bottomEnabled_bottomKeyguardButtonsVisible() [all …]
|
D | SystemBarConfigsTest.java | 222 CarSystemBarView leftBar = new CarSystemBarView(mContext, /* attrs= */ null); in updateInsetPaddings_overlappingBarWithHigherZOrderDisappeared_removesInset() 238 CarSystemBarView leftBar = new CarSystemBarView(mContext, /* attrs= */ null); in updateInsetPaddings_overlappingBarWithHigherZOrderReappeared_addsInset() 302 CarSystemBarView topBar = new CarSystemBarView(mContext, /* attrs= */ null); in updateInsetPaddings_overlappingBars_addsPaddingsByOrders() 303 CarSystemBarView bottomBar = new CarSystemBarView(mContext, /* attrs= */ null); in updateInsetPaddings_overlappingBars_addsPaddingsByOrders() 304 CarSystemBarView leftBar = new CarSystemBarView(mContext, /* attrs= */ null); in updateInsetPaddings_overlappingBars_addsPaddingsByOrders() 305 CarSystemBarView rightBar = new CarSystemBarView(mContext, /* attrs= */ null); in updateInsetPaddings_overlappingBars_addsPaddingsByOrders()
|
D | CarSystemBarViewTest.java | 50 private CarSystemBarView mNavBarView; 76 mNavBarView = (CarSystemBarView) LayoutInflater.from(getContext()).inflate( in dispatchTouch_shadeOpen_flagOff_doesNotConsumeTouch() 98 mNavBarView = (CarSystemBarView) LayoutInflater.from(getContext()).inflate( in dispatchTouch_shadeOpen_flagOn_consumesTouch()
|
D | CarSystemBarTest.java | 466 CarSystemBarView mockTopBarView = mock(CarSystemBarView.class); in onConfigChanged_callOnClick_profilePickerViewIsSelected()
|
/packages/apps/Car/SystemUI/src/com/android/systemui/car/displaycompat/ |
D | CarDisplayCompatSystemBarView.java | 24 import com.android.systemui.car.systembar.CarSystemBarView; 29 public class CarDisplayCompatSystemBarView extends CarSystemBarView {
|
/packages/services/Car/car_product/car_ui_portrait/apps/CarUiPortraitSystemUI/src/com/android/systemui/car/systembar/ |
D | CarUiPortraitSystemBarView.java | 33 public class CarUiPortraitSystemBarView extends CarSystemBarView {
|