Searched refs:DeepShortcutView (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
H A DShortcutsItemView.java50 * A {@link PopupItemView} that contains all of the {@link DeepShortcutView}s for an app,
61 private final List<DeepShortcutView> mDeepShortcutViews = new ArrayList<>();
99 if (!v.isInTouchMode() || !(v.getParent() instanceof DeepShortcutView)) return false;
106 DeepShortcutView sv = (DeepShortcutView) v.getParent();
129 mDeepShortcutViews.add((DeepShortcutView) shortcutView);
144 if (prevChild instanceof DeepShortcutView) {
152 public List<DeepShortcutView> getDeepShortcutViews(boolean reverseOrder) {
217 if (!(mShortcutsLayout.getChildAt(i) instanceof DeepShortcutView)) {
220 DeepShortcutView shortcutVie
[all...]
H A DDeepShortcutView.java34 * A {@link android.widget.FrameLayout} that contains a {@link DeepShortcutView}.
35 * This lets us animate the DeepShortcutView (icon and text) separately from the background.
37 public class DeepShortcutView extends FrameLayout { class in inherits:FrameLayout
49 public DeepShortcutView(Context context) { method in class:DeepShortcutView
53 public DeepShortcutView(Context context, AttributeSet attrs) { method in class:DeepShortcutView
57 public DeepShortcutView(Context context, AttributeSet attrs, int defStyle) { method in class:DeepShortcutView
/packages/apps/Launcher3/src/com/android/launcher3/accessibility/
H A DShortcutMenuAccessibilityDelegate.java30 import com.android.launcher3.shortcuts.DeepShortcutView;
50 if ((host.getParent() instanceof DeepShortcutView)) {
63 if (!(host.getParent() instanceof DeepShortcutView)) {
66 final ShortcutInfo info = ((DeepShortcutView) host.getParent()).getFinalInfo();
/packages/apps/Launcher3/src/com/android/launcher3/popup/
H A DPopupPopulator.java39 import com.android.launcher3.shortcuts.DeepShortcutView;
184 final List<String> shortcutIds, final List<DeepShortcutView> shortcutViews,
241 private final DeepShortcutView mShortcutChild;
245 public UpdateShortcutChild(PopupContainerWithArrow container, DeepShortcutView shortcutChild,
305 if (view instanceof DeepShortcutView) {
307 final DeepShortcutView shortcutView = (DeepShortcutView) view;
H A DPopupContainerWithArrow.java71 import com.android.launcher3.shortcuts.DeepShortcutView;
195 List<DeepShortcutView> shortcutViews = mShortcutsItemView == null

Completed in 111 milliseconds