Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/
DDeviceProfile.java627 Hotseat hotseat = (Hotseat) launcher.findViewById(R.id.hotseat); in layout() local
628 lp = (FrameLayout.LayoutParams) hotseat.getLayoutParams(); in layout()
651 hotseat.getLayout().setPadding(mInsets.left + cellLayoutPaddingLeftRightPx in layout()
661 hotseat.getLayout().setPadding(hotseatAdjustment + workspacePadding.left in layout()
672 hotseat.getLayout().setPadding(hotseatAdjustment + workspacePadding.left in layout()
678 hotseat.setLayoutParams(lp); in layout()
DFocusHelper.java350 final Hotseat hotseat = (Hotseat) dragLayer.findViewById(R.id.hotseat); in handleIconKeyEvent() local
357 CellLayout hotseatLayout = (CellLayout) hotseat.getChildAt(0); in handleIconKeyEvent()
DWorkspace.java2631 Hotseat hotseat = mLauncher.getHotseat();
2634 hotseat.getOrderInHotseat(mTargetCell[0], mTargetCell[1]));
2824 View hotseat = mLauncher.getHotseat();
2825 return mTempXY[0] >= hotseat.getLeft() &&
2826 mTempXY[0] <= hotseat.getRight() &&
2827 mTempXY[1] >= hotseat.getTop() &&
2828 mTempXY[1] <= hotseat.getBottom();
2831 void mapPointFromSelfToHotseatLayout(Hotseat hotseat, float[] xy) {
2835 mLauncher.getDragLayer().mapCoordInSelfToDescendant(hotseat.getLayout(), mTempXY);
DLauncher.java1286 mHotseat = (Hotseat) findViewById(R.id.hotseat); in setupViews()
/packages/apps/Launcher2/
Dprint_db.py170 hotseat = []
172 hotseat.append(None)
177 hotseat[screen] = row
180 for cell in hotseat:
/packages/apps/Launcher3/src/com/android/launcher3/model/
DBgDataModel.java166 DumpTargetWrapper hotseat = new DumpTargetWrapper(ContainerType.HOTSEAT, 0); in dumpProto() local
184 hotseat.add(dtw); in dumpProto()
198 hotseat.add(dtw); in dumpProto()
208 hotseat.add(dtw); in dumpProto()
217 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/Launcher2/src/com/android/launcher2/
DFocusHelper.java670 final ViewGroup hotseat = (ViewGroup) launcher.findViewById(R.id.hotseat); in handleIconKeyEvent() local
740 } else if (hotseat != null) { in handleIconKeyEvent()
741 hotseat.requestFocus(); in handleIconKeyEvent()
DWorkspace.java2030 Hotseat hotseat = mLauncher.getHotseat();
2031 if (hotseat.isAllAppsButtonRank(
2032 hotseat.getOrderInHotseat(mTargetCell[0], mTargetCell[1]))) {
2595 void mapPointFromSelfToHotseatLayout(Hotseat hotseat, float[] xy) {
2596 hotseat.getLayout().getMatrix().invert(mTempInverseMatrix);
2597 xy[0] = xy[0] - hotseat.getLeft() - hotseat.getLayout().getLeft();
2598 xy[1] = xy[1] - hotseat.getTop() - hotseat.getLayout().getTop();
DLauncher.java1034 mHotseat = (Hotseat) findViewById(R.id.hotseat); in setupViews()
/packages/apps/Launcher3/src/com/android/launcher3/allapps/
DAllAppsTransitionController.java542 public void setupViews(AllAppsContainerView appsView, Hotseat hotseat, Workspace workspace) { in setupViews() argument
544 mHotseat = hotseat; in setupViews()