Lines Matching defs:provider

57      *     <td>A newly allocated appWidgetId, which will be bound to the AppWidget provider
97 * <td>A newly allocated appWidgetId, which will be bound to the AppWidget provider
102 * <td>The BroadcastReceiver that will be the AppWidget provider for this AppWidget.
131 * This action is not sent as a broadcast to the AppWidget provider, but as a startActivity
202 * An intent extra that contains the component name of a AppWidget provider.
248 * <p>This may be sent in response to a new instance for this AppWidget provider having
258 * provider, or just a subset. The system tries to send updates for as few AppWidget
293 * an instance for this provider.
304 public static final String META_DATA_APPWIDGET_PROVIDER = "android.appwidget.provider";
353 * This method will only work when called from the uid that owns the AppWidget provider.
421 * This method will only work when called from the uid that owns the AppWidget provider.
449 * This method will only work when called from the uid that owns the AppWidget provider.
481 * This method will only work when called from the uid that owns the AppWidget provider.
495 * Set the RemoteViews to use for all AppWidget instances for the supplied AppWidget provider.
500 * This method will only work when called from the uid that owns the AppWidget provider.
502 * @param provider The {@link ComponentName} for the {@link
503 * android.content.BroadcastReceiver BroadcastReceiver} provider
507 public void updateAppWidget(ComponentName provider, RemoteViews views) {
509 sService.updateAppWidgetProvider(provider, views);
570 * @return A appWidgetId. If the appWidgetId has not been bound to a provider yet, or
602 * @param provider The {@link android.content.BroadcastReceiver} that will be the AppWidget
603 * provider for this AppWidget.
606 public void bindAppWidgetId(int appWidgetId, ComponentName provider) {
608 sService.bindAppWidgetId(appWidgetId, provider, null);
623 * @param provider The {@link android.content.BroadcastReceiver} that will be the AppWidget
624 * provider for this AppWidget.
630 public void bindAppWidgetId(int appWidgetId, ComponentName provider, Bundle options) {
632 sService.bindAppWidgetId(appWidgetId, provider, options);
648 * @param provider The {@link android.content.BroadcastReceiver} that will be the AppWidget
649 * provider for this AppWidget.
652 public boolean bindAppWidgetIdIfAllowed(int appWidgetId, ComponentName provider) {
658 mContext.getPackageName(), appWidgetId, provider, null);
674 * @param provider The {@link android.content.BroadcastReceiver} that will be the AppWidget
675 * provider for this AppWidget.
681 public boolean bindAppWidgetIdIfAllowed(int appWidgetId, ComponentName provider,
688 mContext.getPackageName(), appWidgetId, provider, options);
718 * @param provider The package whose permission is being changed
774 * provider.
776 * @param provider The {@link android.content.BroadcastReceiver} that is the
777 * AppWidget provider to find appWidgetIds for.
779 public int[] getAppWidgetIds(ComponentName provider) {
781 return sService.getAppWidgetIds(provider);