Home | History | Annotate | Download | only in appwidget

Lines Matching refs:appWidgetIds

204      * An intent extra that contains multiple appWidgetIds.
209 public static final String EXTRA_APPWIDGET_IDS = "appWidgetIds";
281 * <td>The appWidgetIds to update. This may be all of the AppWidgets created for this
287 * @see AppWidgetProvider#onUpdate AppWidgetProvider.onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds)
309 * @see AppWidgetProvider#onDeleted AppWidgetProvider.onDeleted(Context context, int[] appWidgetIds)
345 * <td>The set of appWidgetIds represented in a restored backup that have been successfully
347 * to this application, or just a subset. Each entry in this array of appWidgetIds has
352 * <td>The set of appWidgetIds now valid for this application. The app should look at
378 * <td>The set of appWidgetIds represented in a restored backup that have been successfully
380 * to this application, or just a subset. Each entry in this array of appWidgetIds has
385 * <td>The set of appWidgetIds now valid for this application. The app should look at
405 * An intent extra that contains multiple appWidgetIds. These are id values as
450 * Set the RemoteViews to use for the specified appWidgetIds.
465 * @param appWidgetIds The AppWidget instances for which to set the RemoteViews.
468 public void updateAppWidget(int[] appWidgetIds, RemoteViews views) {
473 mService.updateAppWidgetIds(mPackageName, appWidgetIds, views);
553 * Perform an incremental update or command on the widget(s) specified by appWidgetIds.
573 * @param appWidgetIds The AppWidget instances for which to set the RemoteViews.
576 public void partiallyUpdateAppWidget(int[] appWidgetIds, RemoteViews views) {
581 mService.partiallyUpdateAppWidgetIds(mPackageName, appWidgetIds, views);
647 * @param appWidgetIds The AppWidget instances to notify of view data changes.
650 public void notifyAppWidgetViewDataChanged(int[] appWidgetIds, int viewId) {
655 mService.notifyAppWidgetViewDataChanged(mPackageName, appWidgetIds, viewId);
1038 * Get the list of appWidgetIds that have been bound to the given AppWidget
1042 * AppWidget provider to find appWidgetIds for.