HomeSort by relevance Sort by last modified time
    Searched refs:SystemShortcut (Results 1 - 5 of 5) sorted by null

  /packages/apps/Launcher3/src/com/android/launcher3/popup/
SystemShortcut.java 27 public abstract class SystemShortcut {
31 public SystemShortcut(int iconResId, int labelResId) {
49 public static class Widgets extends SystemShortcut {
76 public static class AppInfo extends SystemShortcut {
PopupDataProvider.java 53 private static final SystemShortcut[] SYSTEM_SHORTCUTS = new SystemShortcut[] {
54 new SystemShortcut.AppInfo(),
55 new SystemShortcut.Widgets(),
251 public @NonNull List<SystemShortcut> getEnabledSystemShortcutsForItem(ItemInfo info) {
252 List<SystemShortcut> systemShortcuts = new ArrayList<>();
253 for (SystemShortcut systemShortcut : SYSTEM_SHORTCUTS) {
254 if (systemShortcut.getOnClickListener(mLauncher, info) != null) {
255 systemShortcuts.add(systemShortcut);
    [all...]
PopupPopulator.java 76 @NonNull List<SystemShortcut> systemShortcuts) {
186 final NotificationItemView notificationView, final List<SystemShortcut> systemShortcuts,
223 final SystemShortcut systemShortcut = systemShortcuts.get(i);
225 systemShortcutViews.get(i), systemShortcut, launcher, originalInfo));
282 private final SystemShortcut mSystemShortcutInfo;
287 SystemShortcut systemShortcut, Launcher launcher, ItemInfo originalInfo) {
290 mSystemShortcutInfo = systemShortcut;
304 public static void initializeSystemShortcut(Context context, View view, SystemShortcut info)
    [all...]
PopupContainerWithArrow.java 152 List<SystemShortcut> systemShortcuts = popupDataProvider
165 final List<NotificationKeyData> notificationKeys, List<SystemShortcut> systemShortcuts) {
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
ShortcutsItemView.java 42 import com.android.launcher3.popup.SystemShortcut;
169 * Adds a {@link SystemShortcut.Widgets} item if there are widgets for the given ItemInfo.
173 SystemShortcut widgetInfo = new SystemShortcut.Widgets();
177 if (systemShortcutView.getTag() instanceof SystemShortcut.Widgets) {

Completed in 75 milliseconds