Searched defs:appWidgetIds (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/appwidget/
H A DAppWidgetProvider.java64 int[] appWidgetIds = extras.getIntArray(AppWidgetManager.EXTRA_APPWIDGET_IDS);
65 if (appWidgetIds != null && appWidgetIds.length > 0) {
66 this.onUpdate(context, AppWidgetManager.getInstance(context), appWidgetIds);
107 * @param appWidgetIds The appWidgetIds for which an update is needed. Note that this
113 public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) { argument
144 * @param appWidgetIds The appWidgetIds that have been deleted from their host.
148 public void onDeleted(Context context, int[] appWidgetIds) { argument
[all...]
H A DAppWidgetManager.java194 * An intent extra that contains multiple appWidgetIds.
199 public static final String EXTRA_APPWIDGET_IDS = "appWidgetIds";
257 * <td>The appWidgetIds to update. This may be all of the AppWidgets created for this
263 * @see AppWidgetProvider#onUpdate AppWidgetProvider.onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds)
279 * @see AppWidgetProvider#onDeleted AppWidgetProvider.onDeleted(Context context, int[] appWidgetIds)
344 * Set the RemoteViews to use for the specified appWidgetIds.
359 * @param appWidgetIds The AppWidget instances for which to set the RemoteViews.
362 public void updateAppWidget(int[] appWidgetIds, RemoteViews views) { argument
364 sService.updateAppWidgetIds(appWidgetIds, views);
435 * Perform an incremental update or command on the widget(s) specified by appWidgetIds
458 partiallyUpdateAppWidget(int[] appWidgetIds, RemoteViews views) argument
523 notifyAppWidgetViewDataChanged(int[] appWidgetIds, int viewId) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DAppWidgetService.java276 public void notifyAppWidgetViewDataChanged(int[] appWidgetIds, int viewId) argument
279 appWidgetIds, viewId);
283 public void partiallyUpdateAppWidgetIds(int[] appWidgetIds, RemoteViews views) argument
286 appWidgetIds, views);
301 public void updateAppWidgetIds(int[] appWidgetIds, RemoteViews views) throws RemoteException { argument
302 getImplForUser(getCallingOrCurrentUserId()).updateAppWidgetIds(appWidgetIds, views);
H A DAppWidgetServiceImpl.java707 // Add it to the mapping of RemoteViewsService to appWidgetIds so that we can determine
799 HashSet<Integer> appWidgetIds = null;
801 appWidgetIds = mRemoteViewsServicesAppWidgets.get(fc);
803 appWidgetIds = new HashSet<Integer>();
804 mRemoteViewsServicesAppWidgets.put(fc, appWidgetIds);
806 appWidgetIds.add(appWidgetId);
866 public void updateAppWidgetIds(int[] appWidgetIds, RemoteViews views) { argument
867 if (appWidgetIds == null) {
882 if (appWidgetIds.length == 0) {
885 final int N = appWidgetIds
932 partiallyUpdateAppWidgetIds(int[] appWidgetIds, RemoteViews views) argument
953 notifyAppWidgetViewDataChanged(int[] appWidgetIds, int viewId) argument
1279 sendUpdateIntentLocked(Provider p, int[] appWidgetIds) argument
1288 registerForBroadcastsLocked(Provider p, int[] appWidgetIds) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java1066 int[] appWidgetIds = new int[appWidgetStringIds.length];
1070 appWidgetIds[i] = Integer.decode(appWidget);
1076 return appWidgetIds;
1136 private void writeAppWidgets(int[] appWidgetIds) { argument
1139 combineStrings(appWidgetIds, ","),

Completed in 957 milliseconds