Home
last modified time | relevance | path

Searched refs:DeepShortcutView (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/popup/
DPopupContainerWithArrow.java67 import com.android.launcher3.shortcuts.DeepShortcutView;
88 private final List<DeepShortcutView> mShortcuts = new ArrayList<>();
228 DeepShortcutView lastView = null; in onInflationComplete()
231 if (view.getVisibility() == VISIBLE && view instanceof DeepShortcutView) { in onInflationComplete()
235 lastView = (DeepShortcutView) view; in onInflationComplete()
359 DeepShortcutView view = mShortcuts.get(i); in updateHiddenShortcuts()
369 DeepShortcutView lastView = null; in updateDividers()
372 if (view.getVisibility() == VISIBLE && view instanceof DeepShortcutView) { in updateDividers()
376 lastView = (DeepShortcutView) view; in updateDividers()
424 if (view instanceof DeepShortcutView) { in initializeSystemShortcut()
[all …]
DPopupPopulator.java32 import com.android.launcher3.shortcuts.DeepShortcutView;
127 final List<DeepShortcutView> shortcutViews, in createUpdateRunnable()
157 final DeepShortcutView view = shortcutViews.get(i); in createUpdateRunnable()
/packages/apps/Launcher3/src/com/android/launcher3/accessibility/
DShortcutMenuAccessibilityDelegate.java32 import com.android.launcher3.shortcuts.DeepShortcutView;
52 if ((host.getParent() instanceof DeepShortcutView)) { in addSupportedActions()
64 if (!(host.getParent() instanceof DeepShortcutView)) { in performAction()
67 final WorkspaceItemInfo info = ((DeepShortcutView) host.getParent()).getFinalInfo(); in performAction()
/packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
DDeepShortcutView.java38 public class DeepShortcutView extends FrameLayout { class
49 public DeepShortcutView(Context context) { in DeepShortcutView() method in DeepShortcutView
53 public DeepShortcutView(Context context, AttributeSet attrs) { in DeepShortcutView() method in DeepShortcutView
57 public DeepShortcutView(Context context, AttributeSet attrs, int defStyle) { in DeepShortcutView() method in DeepShortcutView
/packages/apps/Launcher3/src/com/android/launcher3/views/
DFloatingIconView.java73 import com.android.launcher3.shortcuts.DeepShortcutView;
352 if (v instanceof DeepShortcutView) { in getLocationBoundsForView()
353 v = ((DeepShortcutView) v).getBubbleText(); in getLocationBoundsForView()
355 } else if (v.getParent() instanceof DeepShortcutView) { in getLocationBoundsForView()
356 v = ((DeepShortcutView) v.getParent()).getIconView(); in getLocationBoundsForView()
408 } else if (originalView instanceof DeepShortcutView) { in getIconResult()
409 drawable = ((DeepShortcutView) originalView).getIconView().getBackground(); in getIconResult()
DOptionsPopupView.java42 import com.android.launcher3.shortcuts.DeepShortcutView;
130 DeepShortcutView view = popup.inflateAndAdd(R.layout.system_shortcut, popup); in show()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/
DQuickstepAppTransitionManagerImpl.java68 import com.android.launcher3.shortcuts.DeepShortcutView;
451 if (v instanceof BubbleTextView && !(v.getParent() instanceof DeepShortcutView)) { in getOpeningWindowAnimators()