Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/accessibility/
DShortcutMenuAccessibilityDelegate.java30 import com.android.launcher3.shortcuts.DeepShortcutView;
47 if ((host.getParent() instanceof DeepShortcutView)) { in getSupportedActions()
55 if (!(host.getParent() instanceof DeepShortcutView)) { in performAction()
58 final WorkspaceItemInfo info = ((DeepShortcutView) host.getParent()).getFinalInfo(); in performAction()
/packages/apps/Launcher3/src/com/android/launcher3/popup/
DPopupContainerWithArrow.java60 import com.android.launcher3.shortcuts.DeepShortcutView;
82 private final List<DeepShortcutView> mDeepShortcuts = new ArrayList<>();
394 DeepShortcutView v = inflateAndAdd(R.layout.deep_shortcut, in addDeepShortcuts()
436 DeepShortcutView view = mDeepShortcuts.get(i); in updateHiddenShortcuts()
459 if (view instanceof DeepShortcutView) { in initializeSystemShortcut()
461 final DeepShortcutView shortcutView = (DeepShortcutView) view; in initializeSystemShortcut()
626 if (!(v.getParent() instanceof DeepShortcutView)) return false;
629 DeepShortcutView sv = (DeepShortcutView) v.getParent();
DPopupPopulator.java33 import com.android.launcher3.shortcuts.DeepShortcutView;
112 final List<DeepShortcutView> shortcutViews) { in createUpdateRunnable()
128 final DeepShortcutView view = shortcutViews.get(i); in createUpdateRunnable()
DArrowPopup.java53 import com.android.launcher3.shortcuts.DeepShortcutView;
293 return view instanceof DeepShortcutView; in isShortcutOrWrapper()
/packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
DDeepShortcutView.java47 public class DeepShortcutView extends FrameLayout implements BubbleTextHolder { class
59 public DeepShortcutView(Context context) { in DeepShortcutView() method in DeepShortcutView
63 public DeepShortcutView(Context context, AttributeSet attrs) { in DeepShortcutView() method in DeepShortcutView
67 public DeepShortcutView(Context context, AttributeSet attrs, int defStyle) { in DeepShortcutView() method in DeepShortcutView
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/
DTaskbarPopupController.java44 import com.android.launcher3.shortcuts.DeepShortcutView;
221 if (!(v.getParent() instanceof DeepShortcutView)) return false; in onLongClick()
223 DeepShortcutView sv = (DeepShortcutView) v.getParent(); in onLongClick()
DTaskbarDragController.java75 import com.android.launcher3.shortcuts.DeepShortcutView;
150 DeepShortcutView shortcutView, Point iconShift) { in startDragOnLongClick()
/packages/apps/Launcher3/src/com/android/launcher3/views/
DFloatingIconView.java62 import com.android.launcher3.shortcuts.DeepShortcutView;
258 } else if (v.getParent() instanceof DeepShortcutView) { in getLocationBoundsForView()
259 v = ((DeepShortcutView) v.getParent()).getIconView(); in getLocationBoundsForView()
302 } else if (originalView instanceof DeepShortcutView) { in getIconResult()
303 drawable = ((DeepShortcutView) originalView).getIconView().getBackground(); in getIconResult()
DOptionsPopupView.java53 import com.android.launcher3.shortcuts.DeepShortcutView;
185 DeepShortcutView view = popup.inflateAndAdd(R.layout.system_shortcut, popup); in show()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/
DQuickstepTransitionManager.java132 import com.android.launcher3.shortcuts.DeepShortcutView;
1965 if (view instanceof BubbleTextView && !(view.getParent() instanceof DeepShortcutView)) { in AnimOpenProperties()