Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/
DWorkspaceStateTransitionAnimation.java92 Hotseat hotseat = mWorkspace.getHotseat(); in setWorkspaceProperty() local
97 if (!hotseat.getRotationMode().isTransposed) { in setWorkspaceProperty()
102 hotseat.setPivotY(mWorkspace.getPivotY() + mWorkspace.getTop() - hotseat.getTop()); in setWorkspaceProperty()
103 hotseat.setPivotX(mWorkspace.getPivotX() in setWorkspaceProperty()
104 + mWorkspace.getLeft() - hotseat.getLeft()); in setWorkspaceProperty()
109 propertySetter.setFloat(hotseat, SCALE_PROPERTY, hotseatScale, in setWorkspaceProperty()
113 propertySetter.setViewAlpha(hotseat, hotseatIconsAlpha, fadeInterpolator); in setWorkspaceProperty()
133 propertySetter.setFloat(hotseat, View.TRANSLATION_Y, in setWorkspaceProperty()
DLauncherState.java318 Hotseat hotseat = launcher.getHotseat();
319 boolean isHotseatVisible = hotseat.getVisibility() == VISIBLE && hotseat.getAlpha() > 0;
321 hotseat.setScaleX(0.92f);
322 hotseat.setScaleY(0.92f);
DFocusHelper.java339 final Hotseat hotseat = (Hotseat) dragLayer.findViewById(R.id.hotseat); in handleIconKeyEvent() local
346 CellLayout hotseatLayout = (CellLayout) hotseat.getChildAt(0); in handleIconKeyEvent()
DWorkspace.java2129 View hotseat = mLauncher.getHotseat();
2130 return mTempFXY[0] >= hotseat.getLeft() &&
2131 mTempFXY[0] <= hotseat.getRight() &&
2132 mTempFXY[1] >= hotseat.getTop() &&
2133 mTempFXY[1] <= hotseat.getBottom();
DLauncher.java1109 mHotseat = findViewById(R.id.hotseat); in setupViews()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/util/
DStaggeredWorkspaceAnim.java84 ViewGroup hotseat = launcher.getHotseat(); in StaggeredWorkspaceAnim() local
90 boolean hotseatClipChildren = hotseat.getClipChildren(); in StaggeredWorkspaceAnim()
91 boolean hotseatClipToPadding = hotseat.getClipToPadding(); in StaggeredWorkspaceAnim()
97 hotseat.setClipChildren(false); in StaggeredWorkspaceAnim()
98 hotseat.setClipToPadding(false); in StaggeredWorkspaceAnim()
111 ViewGroup hotseatChild = (ViewGroup) hotseat.getChildAt(0); in StaggeredWorkspaceAnim()
147 hotseat.setClipChildren(hotseatClipChildren); in StaggeredWorkspaceAnim()
148 hotseat.setClipToPadding(hotseatClipToPadding); in StaggeredWorkspaceAnim()
/packages/apps/Launcher3/
Dprint_db.py233 hotseat = []
235 hotseat.append(None)
240 hotseat[screen] = row
243 for cell in hotseat:
/packages/apps/Launcher3/src/com/android/launcher3/model/
DBgDataModel.java182 DumpTargetWrapper hotseat = new DumpTargetWrapper(ContainerType.HOTSEAT, 0); in dumpProto() local
201 hotseat.add(dtw); in dumpProto()
215 hotseat.add(dtw); in dumpProto()
225 hotseat.add(dtw); in dumpProto()
234 targetList.addAll(hotseat.getFlattenedList()); in dumpProto()
/packages/apps/Launcher3/tests/tapl/com/android/launcher3/tapl/
DWorkspace.java60 final UiObject2 hotseat = mHotseat; in switchToAllApps() local
61 final Point start = hotseat.getVisibleCenter(); in switchToAllApps()
62 start.y = hotseat.getVisibleBounds().bottom - 1; in switchToAllApps()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/views/
DLauncherRecentsView.java304 Hotseat hotseat = mActivity.getHotseat(); in shouldStealTouchFromSiblingsBelow() local
305 boolean touchingHotseat = hotseat.isShown() in shouldStealTouchFromSiblingsBelow()
306 && mActivity.getDragLayer().isEventOverView(hotseat, ev, this); in shouldStealTouchFromSiblingsBelow()
/packages/apps/Launcher3/src/com/android/launcher3/graphics/
DLauncherPreviewRenderer.java157 mHotseat = mRootView.findViewById(R.id.hotseat);