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.java70 import com.android.launcher3.shortcuts.DeepShortcutView;
92 private final List<DeepShortcutView> mShortcuts = new ArrayList<>();
245 DeepShortcutView lastView = null; in onInflationComplete()
248 if (view.getVisibility() == VISIBLE && view instanceof DeepShortcutView) { in onInflationComplete()
252 lastView = (DeepShortcutView) view; in onInflationComplete()
295 DeepShortcutView v = inflateAndAdd(R.layout.deep_shortcut, this); in populateAndShow()
370 DeepShortcutView view = mShortcuts.get(i); in updateHiddenShortcuts()
380 DeepShortcutView lastView = null; in updateDividers()
383 if (view.getVisibility() == VISIBLE && view instanceof DeepShortcutView) { in updateDividers()
387 lastView = (DeepShortcutView) view; in updateDividers()
[all …]
DPopupPopulator.java37 import com.android.launcher3.shortcuts.DeepShortcutView;
134 final List<DeepShortcutView> shortcutViews, in createUpdateRunnable()
167 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.java61 import com.android.launcher3.shortcuts.DeepShortcutView;
231 if (v instanceof DeepShortcutView) { in getLocationBoundsForView()
232 v = ((DeepShortcutView) v).getBubbleText(); in getLocationBoundsForView()
234 } else if (v.getParent() instanceof DeepShortcutView) { in getLocationBoundsForView()
235 v = ((DeepShortcutView) v.getParent()).getIconView(); in getLocationBoundsForView()
286 } else if (originalView instanceof DeepShortcutView) { in getIconResult()
287 drawable = ((DeepShortcutView) originalView).getIconView().getBackground(); in getIconResult()
DOptionsPopupView.java48 import com.android.launcher3.shortcuts.DeepShortcutView;
131 DeepShortcutView view = in show()
132 (DeepShortcutView) popup.inflateAndAdd(R.layout.system_shortcut, popup); in show()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/
DQuickstepAppTransitionManagerImpl.java75 import com.android.launcher3.shortcuts.DeepShortcutView;
469 if (v instanceof BubbleTextView && !(v.getParent() instanceof DeepShortcutView)) { in getOpeningWindowAnimators()