Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/popup/
DPopupContainerWithArrow.java65 import com.android.launcher3.shortcuts.DeepShortcutView;
89 private final List<DeepShortcutView> mShortcuts = new ArrayList<>();
282 DeepShortcutView v = inflateAndAdd(R.layout.deep_shortcut, mDeepShortcutContainer); in populateAndShow()
369 DeepShortcutView view = mShortcuts.get(i); in updateHiddenShortcuts()
377 if (view instanceof DeepShortcutView) { in initializeSystemShortcut()
379 final DeepShortcutView shortcutView = (DeepShortcutView) view; in initializeSystemShortcut()
659 if (!(v.getParent() instanceof DeepShortcutView)) return false;
662 DeepShortcutView sv = (DeepShortcutView) v.getParent();
DPopupPopulator.java37 import com.android.launcher3.shortcuts.DeepShortcutView;
134 final List<DeepShortcutView> shortcutViews, in createUpdateRunnable()
167 final DeepShortcutView view = shortcutViews.get(i); in createUpdateRunnable()
DArrowPopup.java64 import com.android.launcher3.shortcuts.DeepShortcutView;
253 if (view.getVisibility() == VISIBLE && view instanceof DeepShortcutView) { in assignMarginsAndBackgrounds()
284 if (view instanceof DeepShortcutView) { in assignMarginsAndBackgrounds()
/packages/apps/Launcher3/src/com/android/launcher3/accessibility/
DShortcutMenuAccessibilityDelegate.java32 import com.android.launcher3.shortcuts.DeepShortcutView;
53 if ((host.getParent() instanceof DeepShortcutView)) { in getSupportedActions()
65 if (!(host.getParent() instanceof DeepShortcutView)) { in performAction()
68 final WorkspaceItemInfo info = ((DeepShortcutView) host.getParent()).getFinalInfo(); in performAction()
/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/src/com/android/launcher3/views/
DFloatingIconView.java60 import com.android.launcher3.shortcuts.DeepShortcutView;
221 } else if (v.getParent() instanceof DeepShortcutView) { in getLocationBoundsForView()
222 v = ((DeepShortcutView) v.getParent()).getIconView(); in getLocationBoundsForView()
263 } else if (originalView instanceof DeepShortcutView) { in getIconResult()
264 drawable = ((DeepShortcutView) originalView).getIconView().getBackground(); in getIconResult()
DOptionsPopupView.java51 import com.android.launcher3.shortcuts.DeepShortcutView;
147 DeepShortcutView view = in show()
148 (DeepShortcutView) popup.inflateAndAdd(R.layout.system_shortcut, popup); in show()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/
DQuickstepTransitionManager.java87 import com.android.launcher3.shortcuts.DeepShortcutView;
1445 if (view instanceof BubbleTextView && !(view.getParent() instanceof DeepShortcutView)) { in AnimOpenProperties()