Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import android.graphics.Bitmap;

import android.graphics.drawable.BitmapDrawable;

public class Main {
    /**
     * bitmap -> Drawable
     * 
     * @param bm
     * @return
     */
    public static BitmapDrawable BitmapToDrawable(Bitmap bitmap) {
        BitmapDrawable bd = new BitmapDrawable(bitmap);
        return bd;
    }
}