Home | History | Annotate | Download | only in appwidget

Lines Matching defs:this

5  * you may not use this file except in compliance with the License.
31 * <p>Extend this class and override one or more of the {@link #onUpdate}, {@link #onDeleted},
61 this.onUpdate(context, AppWidgetManager.getInstance(context), appWidgetIds);
69 this.onDeleted(context, new int[] { appWidgetId });
73 this.onEnabled(context);
76 this.onDisabled(context);
83 * this AppWidget provider is being asked to provide {@link android.widget.RemoteViews RemoteViews}
84 * for a set of AppWidgets. Override this method to implement your own AppWidget functionality.
88 * @param context The {@link android.content.Context Context} in which this receiver is
92 * @param appWidgetIds The appWidgetIds for which an update is needed. Note that this
93 * may be all of the AppWidget instances for this provider, or just
103 * one or more AppWidget instances have been deleted. Override this method to implement
108 * @param context The {@link android.content.Context Context} in which this receiver is
119 * the a AppWidget for this provider is instantiated. Override this method to implement your
123 * When the last AppWidget for this provider is deleted,
125 * {@link #onDisabled} is called. If after that, an AppWidget for this provider is created
128 * @param context The {@link android.content.Context Context} in which this receiver is
138 * is sent when the last AppWidget instance for this provider is deleted. Override this method
143 * @param context The {@link android.content.Context Context} in which this receiver is