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.java93 Hotseat hotseat = mWorkspace.getHotseat(); in setWorkspaceProperty() local
98 if (!hotseat.getRotationMode().isTransposed) { in setWorkspaceProperty()
104 dragLayer.mapCoordInSelfToDescendant(hotseat, workspacePivot); in setWorkspaceProperty()
105 hotseat.setPivotX(workspacePivot[0]); in setWorkspaceProperty()
106 hotseat.setPivotY(workspacePivot[1]); in setWorkspaceProperty()
111 propertySetter.setFloat(hotseat, SCALE_PROPERTY, hotseatScale, in setWorkspaceProperty()
115 propertySetter.setViewAlpha(hotseat, hotseatIconsAlpha, fadeInterpolator); in setWorkspaceProperty()
135 propertySetter.setFloat(hotseat, View.TRANSLATION_Y, in setWorkspaceProperty()
DLauncherState.java314 Hotseat hotseat = launcher.getHotseat();
315 boolean isHotseatVisible = hotseat.getVisibility() == VISIBLE && hotseat.getAlpha() > 0;
317 hotseat.setScaleX(0.92f);
318 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.java2114 View hotseat = mLauncher.getHotseat();
2115 return mTempFXY[0] >= hotseat.getLeft() &&
2116 mTempFXY[0] <= hotseat.getRight() &&
2117 mTempFXY[1] >= hotseat.getTop() &&
2118 mTempFXY[1] <= hotseat.getBottom();
DLauncher.java1081 mHotseat = findViewById(R.id.hotseat); in setupViews()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/util/
DStaggeredWorkspaceAnim.java98 ViewGroup hotseat = (ViewGroup) launcher.getHotseat().getChildAt(0); in StaggeredWorkspaceAnim() local
99 for (int i = hotseat.getChildCount() - 1; i >= 0; i--) { in StaggeredWorkspaceAnim()
100 View child = hotseat.getChildAt(i); in StaggeredWorkspaceAnim()
105 View hotseat = launcher.getHotseat().getChildAt(0); in StaggeredWorkspaceAnim() local
106 addStaggeredAnimationForView(hotseat, grid.inv.numRows + 1, totalRows); in StaggeredWorkspaceAnim()
/packages/apps/Launcher3/src/com/android/launcher3/model/
DBgDataModel.java175 DumpTargetWrapper hotseat = new DumpTargetWrapper(ContainerType.HOTSEAT, 0); in dumpProto() local
194 hotseat.add(dtw); in dumpProto()
208 hotseat.add(dtw); in dumpProto()
218 hotseat.add(dtw); in dumpProto()
227 targetList.addAll(hotseat.getFlattenedList()); in dumpProto()
/packages/apps/Launcher3/
Dprint_db.py233 hotseat = []
235 hotseat.append(None)
240 hotseat[screen] = row
243 for cell in hotseat:
/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.java260 Hotseat hotseat = mActivity.getHotseat(); in shouldStealTouchFromSiblingsBelow() local
261 boolean touchingHotseat = hotseat.isShown() in shouldStealTouchFromSiblingsBelow()
262 && mActivity.getDragLayer().isEventOverView(hotseat, ev, this); in shouldStealTouchFromSiblingsBelow()
/packages/apps/Launcher3/src/com/android/launcher3/graphics/
DLauncherPreviewRenderer.java157 mHotseat = mRootView.findViewById(R.id.hotseat);