Home
last modified time | relevance | path

Searched refs:mActionsView (Results 1 – 12 of 12) sorted by relevance

/packages/apps/Launcher3/quickstep/src/com/android/launcher3/
DBaseQuickstepLauncher.java99 private OverviewActionsView mActionsView; field in BaseQuickstepLauncher
159 if (mActionsView != null) { in onNavigationModeChanged()
160 mActionsView.updateVerticalMargin(newMode); in onNavigationModeChanged()
263 mActionsView = findViewById(R.id.overview_actions_view); in setupViews()
269 overviewPanel.init(mActionsView, mSplitPlaceholderView); in setupViews()
270 mActionsView.setDp(getDeviceProfile()); in setupViews()
271 mActionsView.updateVerticalMargin(SysUINavigationMode.getMode(this)); in setupViews()
285 return (T) mActionsView; in getActionsView()
/packages/apps/Car/Notification/src/com/android/car/notification/template/
DCallNotificationViewHolder.java33 private final CarNotificationActionsView mActionsView; field in CallNotificationViewHolder
41 mActionsView = view.findViewById(R.id.notification_actions); in CallNotificationViewHolder()
55 mActionsView.bind(mClickHandlerFactory, alertEntry); in bind()
DInboxNotificationViewHolder.java34 private final CarNotificationActionsView mActionsView; field in InboxNotificationViewHolder
42 mActionsView = view.findViewById(R.id.notification_actions); in InboxNotificationViewHolder()
55 mActionsView.bind(mClickHandlerFactory, alertEntry); in bind()
DNavigationNotificationViewHolder.java33 private final CarNotificationActionsView mActionsView; field in NavigationNotificationViewHolder
42 mActionsView = view.findViewById(R.id.notification_actions); in NavigationNotificationViewHolder()
55 mActionsView.bind(mClickHandlerFactory, alertEntry); in bind()
DBasicNotificationViewHolder.java34 private final CarNotificationActionsView mActionsView; field in BasicNotificationViewHolder
42 mActionsView = view.findViewById(R.id.notification_actions); in BasicNotificationViewHolder()
55 mActionsView.bind(mClickHandlerFactory, alertEntry); in bind()
DEmergencyNotificationViewHolder.java36 private final CarNotificationActionsView mActionsView; field in EmergencyNotificationViewHolder
48 mActionsView = view.findViewById(R.id.notification_actions); in EmergencyNotificationViewHolder()
70 mActionsView.bind(mClickHandlerFactory, alertEntry); in bind()
DMessageNotificationViewHolder.java49 private final CarNotificationActionsView mActionsView; field in MessageNotificationViewHolder
63 mActionsView = view.findViewById(R.id.notification_actions); in MessageNotificationViewHolder()
87 mActionsView.bind(mClickHandlerFactory, alertEntry); in bind()
98 mActionsView.bind(mClickHandlerFactory, alertEntry); in bindRestricted()
DProgressNotificationViewHolder.java38 private final CarNotificationActionsView mActionsView; field in ProgressNotificationViewHolder
49 mActionsView = view.findViewById(R.id.notification_actions); in ProgressNotificationViewHolder()
65 mActionsView.bind(mClickHandlerFactory, alertEntry); in bind()
DCarNotificationBaseViewHolder.java53 private final CarNotificationActionsView mActionsView; field in CarNotificationBaseViewHolder
112 mActionsView = itemView.findViewById(R.id.notification_actions); in CarNotificationBaseViewHolder()
296 if (mActionsView != null) { in reset()
297 mActionsView.reset(); in reset()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
DRecentsView.java560 private OverviewActionsView mActionsView; field in RecentsView
769 mActionsView = actionsView; in init()
770 mActionsView.updateHiddenFlags(HIDDEN_NO_TASKS, getTaskViewCount() == 0); in init()
828 mActionsView.updateHiddenFlags(HIDDEN_NO_TASKS, getTaskViewCount() == 0); in onViewRemoved()
841 mActionsView.updateHiddenFlags(HIDDEN_NO_TASKS, false); in onViewAdded()
984 mActionsView.updateDisabledFlags(OverviewActionsView.DISABLED_SCROLLING, true); in onPageBeginTransition()
991 mActionsView.updateDisabledFlags(OverviewActionsView.DISABLED_SCROLLING, false); in onPageEndTransition()
1255 mActionsView.getFullscreenAlpha().setValue( in setFullscreenProgress()
1281 mActionsView.setDp(dp); in setInsets()
1314 mActionsView.updateHiddenFlags(HIDDEN_NON_ZERO_ROTATION, in updateOrientationHandler()
[all …]
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
DTaskOverlayFactory.java154 private T mActionsView; field in TaskOverlayFactory.TaskOverlay
165 if (mActionsView == null) { in getActionsView()
166 mActionsView = BaseActivity.fromContext(mThumbnailView.getContext()).findViewById( in getActionsView()
169 return mActionsView; in getActionsView()
DRecentsActivity.java104 private OverviewActionsView mActionsView; field in RecentsActivity
122 mActionsView = findViewById(R.id.overview_actions_view); in setupViews()
131 mFallbackRecentsView.init(mActionsView, splitPlaceholderView); in setupViews()
190 return mActionsView; in getActionsView()