How can I convert a Bitmap image to Drawable ?

1Best Answer
11

Try this it converts a Bitmap type image to Drawable

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

Leave a Reply

Your email address will not be published. Required fields are marked *