Home
last modified time | relevance | path

Searched refs:hotseat (Results 1 – 11 of 11) sorted by relevance

/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/util/
DStaggeredWorkspaceAnim.java86 ViewGroup hotseat = launcher.getHotseat(); in StaggeredWorkspaceAnim() local
92 boolean hotseatClipChildren = hotseat.getClipChildren(); in StaggeredWorkspaceAnim()
93 boolean hotseatClipToPadding = hotseat.getClipToPadding(); in StaggeredWorkspaceAnim()
99 hotseat.setClipChildren(false); in StaggeredWorkspaceAnim()
100 hotseat.setClipToPadding(false); in StaggeredWorkspaceAnim()
113 ViewGroup hotseatChild = (ViewGroup) hotseat.getChildAt(0); in StaggeredWorkspaceAnim()
150 hotseat.setClipChildren(hotseatClipChildren); in StaggeredWorkspaceAnim()
151 hotseat.setClipToPadding(hotseatClipToPadding); in StaggeredWorkspaceAnim()
/packages/apps/Launcher3/src/com/android/launcher3/
DWorkspaceStateTransitionAnimation.java109 Hotseat hotseat = mWorkspace.getHotseat(); in setWorkspaceProperty() local
125 setPivotToScaleWithWorkspace(hotseat); in setWorkspaceProperty()
130 pa.add(getSpringScaleAnimator(mLauncher, hotseat, hotseatScale)); in setWorkspaceProperty()
136 propertySetter.setFloat(hotseat, SCALE_PROPERTY, hotseatScale, in setWorkspaceProperty()
143 propertySetter.setViewAlpha(hotseat, hotseatIconsAlpha, fadeInterpolator); in setWorkspaceProperty()
163 propertySetter.setFloat(hotseat, VIEW_TRANSLATE_Y, in setWorkspaceProperty()
DFocusHelper.java340 final Hotseat hotseat = (Hotseat) dragLayer.findViewById(R.id.hotseat); in handleIconKeyEvent() local
347 CellLayout hotseatLayout = (CellLayout) hotseat.getChildAt(0); in handleIconKeyEvent()
DWorkspace.java2102 View hotseat = mLauncher.getHotseat();
2103 return mTempFXY[0] >= hotseat.getLeft() &&
2104 mTempFXY[0] <= hotseat.getRight() &&
2105 mTempFXY[1] >= hotseat.getTop() &&
2106 mTempFXY[1] <= hotseat.getBottom();
DLauncher.java1130 mHotseat = findViewById(R.id.hotseat); in setupViews()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/states/
DQuickstepAtomicAnimationFactory.java182 Hotseat hotseat = mActivity.getHotseat(); in prepareForAtomicAnimation() local
183 boolean isHotseatVisible = hotseat.getVisibility() == VISIBLE && hotseat.getAlpha() > 0; in prepareForAtomicAnimation()
185 hotseat.setScaleX(0.92f); in prepareForAtomicAnimation()
186 hotseat.setScaleY(0.92f); in prepareForAtomicAnimation()
/packages/apps/Launcher3/protos/
Dlauncher_atom.proto48 HotseatContainer hotseat = 2; field
100 DEFAULT_LAYOUT = 1; // icon automatically placed in workspace, folder, hotseat
107 HOTSEAT_PREDICTION = 8; // from prediction bar in hotseat container
181 // Represents hotseat container with prediction feature enabled.
185 // No of hotseat positions filled with predicted items.
195 HotseatContainer hotseat = 5; field
/packages/apps/Launcher3/tools/
Dprint_db.py233 hotseat = []
235 hotseat.append(None)
240 hotseat[screen] = row
243 for cell in hotseat:
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/views/
DLauncherRecentsView.java276 Hotseat hotseat = mActivity.getHotseat(); in shouldStealTouchFromSiblingsBelow() local
277 boolean touchingHotseat = hotseat.isShown() in shouldStealTouchFromSiblingsBelow()
278 && mActivity.getDragLayer().isEventOverView(hotseat, ev, this); in shouldStealTouchFromSiblingsBelow()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/
DQuickstepAppTransitionManagerImpl.java402 View hotseat = mLauncher.getHotseat(); in getLauncherContentAnimator() local
406 hotseat.setLayerType(View.LAYER_TYPE_HARDWARE, null); in getLauncherContentAnimator()
410 launcherAnimator.play(ObjectAnimator.ofFloat(hotseat, View.TRANSLATION_Y, trans)); in getLauncherContentAnimator()
418 hotseat.setTranslationY(0); in getLauncherContentAnimator()
422 hotseat.setLayerType(View.LAYER_TYPE_NONE, null); in getLauncherContentAnimator()
/packages/apps/Launcher3/src/com/android/launcher3/graphics/
DLauncherPreviewRenderer.java268 mHotseat = mRootView.findViewById(R.id.hotseat); in MainThreadRenderer()