Searched defs:widgets (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/widget/
H A DWidgetListRowEntry.java31 public final ArrayList<WidgetItem> widgets; field in class:WidgetListRowEntry
41 this.widgets = items;
H A DWidgetsListAdapter.java80 public void setWidgets(MultiHashMap<PackageItemInfo, WidgetItem> widgets) { argument
84 for (Map.Entry<PackageItemInfo, ArrayList<WidgetItem>> entry : widgets.entrySet()) {
87 Collections.sort(row.widgets, widgetComparator);
104 * Copies and returns the widgets associated with the package and user of the ComponentKey.
109 ArrayList<WidgetItem> widgets = new ArrayList<>(entry.widgets);
110 // Remove widgets not associated with the correct user.
111 Iterator<WidgetItem> iterator = widgets.iterator();
117 return widgets.isEmpty() ? null : widgets;
[all...]
/packages/apps/Car/Media/src/com/android/car/media/util/widgets/
H A DMusicPanelLayout.java16 package com.android.car.media.util.widgets;
H A DPlayPauseStopImageView.java16 package com.android.car.media.util.widgets;
/packages/apps/Launcher2/src/com/android/launcher2/
H A DAppsCustomizePagedView.java149 * The Apps/Customize page that displays all the applications, widgets, and shortcuts.
450 // Get the list of widgets and shortcuts
456 // Ensure that all widgets we show can be added on a workspace of this size
1098 private void prepareLoadWidgetPreviewsTask(int page, ArrayList<Object> widgets, argument
1117 AsyncTaskPageData pageData = new AsyncTaskPageData(page, widgets, cellWidth, cellHeight,
1178 // Prepare the set of widgets to load previews for in the background
1534 // The next layout pass will trigger data-ready if both widgets and apps are set, so
/packages/apps/Launcher3/src/com/android/launcher3/
H A DLauncherModel.java149 // Entire list of widgets.
199 public void bindWidgetsRestored(ArrayList<LauncherAppWidgetInfo> widgets); argument
206 public void bindAllWidgets(MultiHashMap<PackageItemInfo, WidgetItem> widgets); argument
593 * - widgets
742 if (DEBUG_LOADERS) Log.d(TAG, "step 4.1: loading widgets");
1265 // Remove any ghost widgets
1376 /** Filters the set of widgets which are on the specified screen. */
1468 // Bind the widgets, one at a time
1935 final MultiHashMap<PackageItemInfo, WidgetItem> widgets
1942 callbacks.bindAllWidgets(widgets);
[all...]
H A DLauncher.java661 * Returns whether we should delay spring loaded mode -- for shortcuts and widgets that have
730 // This is called only if the user did not previously have permissions to bind widgets
757 // We have special handling for widgets
1024 // It is possible that widgets can receive updates while launcher is not in the foreground.
1025 // Consequently, the widgets will be inflated in the orientation of the foreground activity
1026 // (framework issue). On resuming, we ensure that any widgets are inflated for the current
1185 //TODO(hyunyoungs): stop the widgets loader when there is a rotation.
1242 // Stop resizing any widgets
1773 // Reset the widgets view
2973 * Shows the widgets vie
3778 bindWidgetsRestored(final ArrayList<LauncherAppWidgetInfo> widgets) argument
[all...]

Completed in 600 milliseconds