Here you can find the source of BitmapToDrawable(final Bitmap bitmap)
public static Drawable BitmapToDrawable(final Bitmap bitmap)
//package com.java2s; //License from project: Apache License import android.graphics.Bitmap; import android.graphics.drawable.BitmapDrawable; import android.graphics.drawable.Drawable; public class Main { public static Drawable BitmapToDrawable(final Bitmap bitmap) { BitmapDrawable bd = new BitmapDrawable(bitmap); return bd; }/*from ww w.ja va2 s .com*/ }