public static Bitmap mDefaultImg =
BitmapFactory.decodeResource(
- MainApp.getAppContext().getResources(),
- DisplayUtils.getFileTypeIconId("image/png", "default.png")
+ MainApp.getAppContext().getResources(),
+ R.drawable.file_image
);
px,
Bitmap.Config.ARGB_8888);
Canvas c = new Canvas(resultBitmap);
- ColorDrawable backgroundColor =
- new ColorDrawable(MainApp.getAppContext().getResources().
- getColor(R.color.background_color));
- backgroundColor.draw(c);
+ c.drawColor(MainApp.getAppContext().getResources().
+ getColor(R.color.background_color));
c.drawBitmap(bitmap, 0, 0, null);
return resultBitmap;