How to convert Bitmap image to drawable in Android?

By | October 4, 2010

Converting a bitmap to drawable is really easy in ANDORID. It has a class called BitmapDrawable which takes a bitmap as the parameter and convert it into a drawable object.

     BitmapDrawable bd = new BitmapDrawable(targetBitmap);

Leave a Reply

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