Home | History | Annotate | Download | only in gadget

Lines Matching refs:appWidgetId

45     private static final String FIELD_APPWIDGET_ID = "appWidgetId";
191 * Store the given bitmap in this database for the given appWidgetId.
193 public boolean setPhoto(int appWidgetId, Uri imageUri, Bitmap bitmap) {
204 values.put(FIELD_APPWIDGET_ID, appWidgetId);
233 public Entry getEntry(int appWidgetId) {
238 WHERE_APPWIDGET_ID, new String[] {String.valueOf(appWidgetId)},
241 Log.e(TAG, "query fail: empty cursor: " + cursor + " appWidgetId: "
242 + appWidgetId);
245 return new Entry(appWidgetId, cursor);
298 * Remove any bitmap associated with the given appWidgetId.
300 public void deleteEntry(int appWidgetId) {
304 new String[] {String.valueOf(appWidgetId)});