Home | History | Annotate | Download | only in media

Lines Matching full:bitmap

23 import android.graphics.Bitmap;
79 private final Bitmap mBitmap;
84 public SetWallpaperThread(Bitmap bitmap, Handler handler, Context context, File file) {
85 mBitmap = bitmap;
171 intent.putExtra("outputFormat", Bitmap.CompressFormat.PNG.name());
183 Bitmap bitmap = BitmapFactory.decodeStream(s);
184 if (bitmap == null) {
185 Log.e(LOG_TAG, "Failed to set wallpaper. " + "Couldn't get bitmap for path " + mTempFile);
188 new SetWallpaperThread(bitmap, mHandler, this, mTempFile).start();