Android Bitmap to Drawable Convert bitmapToDrawable(Bitmap bitmap)

Here you can find the source of bitmapToDrawable(Bitmap bitmap)

Description

bitmap To Drawable

License

Apache License

Declaration

public static Drawable bitmapToDrawable(Bitmap bitmap) 

Method Source Code

//package com.java2s;
/*/*from   w  w  w.  j a  v  a  2s  .  c om*/
 * Copyright (C) 2013 www.418log.org
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import android.graphics.Bitmap;

import android.graphics.drawable.BitmapDrawable;

import android.graphics.drawable.Drawable;

public class Main {

    public static Drawable bitmapToDrawable(Bitmap bitmap) {
        BitmapDrawable mBitmapDrawable = null;
        try {
            if (bitmap == null) {
                return null;
            }
            mBitmapDrawable = new BitmapDrawable(bitmap);
        } catch (Exception e) {
            e.printStackTrace();
        }
        return mBitmapDrawable;
    }
}

Related

  1. bitmap2Drawable(Bitmap bitmap)
  2. from(Bitmap bitmap)
  3. BitmapToDrawable(final Bitmap bitmap)
  4. bitmapToTransitionDrawable( Bitmap bitmap)
  5. geRoundDrawableFromUrl(String url, int pixels)
  6. bgColorDrawableSelector(Bitmap nomal, Bitmap focus)
  7. bitmapToDrawable(Bitmap bitmap)