一、Drawable 转换成 Bitmap
Resources res = getResources();
Bitmap bmp = BitmapFactory.decodeResource(res, R.drawable.ic_drawable);
二、Bitmap 转换成 Drawable
Drawable drawable = new BitmapDrawable(bmp);
Resources res = getResources();
Bitmap bmp = BitmapFactory.decodeResource(res, R.drawable.ic_drawable);
Drawable drawable = new BitmapDrawable(bmp);