Android – How to convert a Bitmap to Drawable in android

androidandroid-drawablebitmap

How can I convert a Bitmap image to Drawable ?

Best Answer

Try this it converts a Bitmap type image to Drawable

Drawable d = new BitmapDrawable(getResources(), bitmap);