Home | History | Annotate | Download | only in camera

Lines Matching refs:appWidgetId

47         // Update each requested appWidgetId with its unique photo
49 for (int appWidgetId : appWidgetIds) {
50 int[] specificAppWidget = new int[] { appWidgetId };
51 RemoteViews views = buildUpdate(context, appWidgetId, helper);
54 + " for id=" + appWidgetId);
65 for (int appWidgetId : appWidgetIds) {
66 helper.deletePhoto(appWidgetId);
74 static RemoteViews buildUpdate(Context context, int appWidgetId,
77 Bitmap bitmap = helper.getPhoto(appWidgetId);
92 static final String FIELD_APPWIDGET_ID = "appWidgetId";
120 * Store the given bitmap in this database for the given appWidgetId.
122 public boolean setPhoto(int appWidgetId, Bitmap bitmap) {
135 values.put(PhotoDatabaseHelper.FIELD_APPWIDGET_ID, appWidgetId);
162 * Inflate and return a bitmap for the given appWidgetId.
164 public Bitmap getPhoto(int appWidgetId) {
170 appWidgetId);
196 * Remove any bitmap associated with the given appWidgetId.
198 public void deletePhoto(int appWidgetId) {
202 appWidgetId);