Search code examples
androidbitmapandroid-drawable

How to convert a Bitmap to Drawable in android?


How can I convert a Bitmap image to Drawable ?


Solution

  • Sounds like you want to use BitmapDrawable

    From the documentation:

    A Drawable that wraps a bitmap and can be tiled, stretched, or aligned. You can create a BitmapDrawable from a file path, an input stream, through XML inflation, or from a Bitmap object.