Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/
DDeviceProfile.java736 View hotseat = launcher.findViewById(R.id.hotseat); in layout() local
737 lp = (FrameLayout.LayoutParams) hotseat.getLayoutParams(); in layout()
743 hotseat.findViewById(R.id.layout).setPadding(0, 2 * edgeMarginPx, 0, 2 * edgeMarginPx); in layout()
749 hotseat.setPadding(edgeMarginPx + padding.left, 0, in layout()
758 hotseat.findViewById(R.id.layout).setPadding(2 * edgeMarginPx, 0, in layout()
761 hotseat.setLayoutParams(lp); in layout()
DWorkspace.java2348 final View hotseat = mLauncher.getHotseat(); in getChangeStateAnimation() local
2404 Animator hotseatAlpha = new LauncherViewPropertyAnimator(hotseat) in getChangeStateAnimation()
2406 hotseatAlpha.addListener(new AlphaUpdateListener(hotseat)); in getChangeStateAnimation()
2414 hotseat.setLayerType(View.LAYER_TYPE_HARDWARE, null); in getChangeStateAnimation()
2417 layerViews.add(hotseat); in getChangeStateAnimation()
2460 hotseat.setAlpha(finalHotseatAndPageIndicatorAlpha); in getChangeStateAnimation()
2461 AlphaUpdateListener.updateVisibility(hotseat); in getChangeStateAnimation()
2917 Hotseat hotseat = mLauncher.getHotseat(); in acceptDrop() local
2918 if (hotseat.isAllAppsButtonRank( in acceptDrop()
2919 hotseat.getOrderInHotseat(mTargetCell[0], mTargetCell[1]))) { in acceptDrop()
[all …]
DFocusHelper.java425 final ViewGroup hotseat = (ViewGroup) launcher.findViewById(R.id.hotseat); in handleIconKeyEvent() local
501 } else if (hotseat != null) { in handleIconKeyEvent()
502 hotseat.requestFocus(); in handleIconKeyEvent()
DLauncherProvider.java1407 final SparseArray<ContentValues> hotseat = new SparseArray<ContentValues>(); in migrateLauncher2Shortcuts() local
1514 hotseat.put(screen, values); in migrateLauncher2Shortcuts()
1538 final int N = hotseat.size(); in migrateLauncher2Shortcuts()
1540 int hotseatX = hotseat.keyAt(idx); in migrateLauncher2Shortcuts()
1541 ContentValues values = hotseat.valueAt(idx); in migrateLauncher2Shortcuts()
1546 if (hotseat.get(hotseatX) == null) { in migrateLauncher2Shortcuts()
DLauncher.java1370 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/
Dprint_db.py231 hotseat = []
233 hotseat.append(None)
238 hotseat[screen] = row
241 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.java1008 mHotseat = (Hotseat) findViewById(R.id.hotseat); in setupViews()