Lines Matching full:bitmap
27 import android.graphics.Bitmap;
74 Bitmap bitmap = helper.getPhoto(appWidgetId);
75 if (bitmap != null) {
77 views.setImageViewBitmap(Res.id.photo, bitmap);
113 * Store the given bitmap in this database for the given appWidgetId.
115 public boolean setPhoto(int appWidgetId, Bitmap bitmap) {
121 int size = bitmap.getWidth() * bitmap.getHeight() * 4;
123 bitmap.compress(Bitmap.CompressFormat.PNG, 100, out);
151 * Inflate and return a bitmap for the given appWidgetId.
153 public Bitmap getPhoto(int appWidgetId) {
155 Bitmap bitmap = null;
168 bitmap = BitmapFactory.decodeByteArray(data, 0, data.length);
178 return bitmap;
182 * Remove any bitmap associated with the given appWidgetId.