Lines Matching full:bitmap
23 import android.graphics.Bitmap;
81 private final Bitmap mBitmap;
86 public SetWallpaperThread(Bitmap bitmap, Handler handler, Context context, File file) {
87 mBitmap = bitmap;
182 intent.putExtra("outputFormat", Bitmap.CompressFormat.PNG.name());
194 Bitmap bitmap = BitmapFactory.decodeStream(s);
195 if (bitmap == null) {
196 Log.e(LOG_TAG, "Failed to set wallpaper. " + "Couldn't get bitmap for path " + mTempFile);
199 new SetWallpaperThread(bitmap, mHandler, this, mTempFile).start();