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);
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);