Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.app.Activity;

import android.graphics.Bitmap;
import android.graphics.drawable.BitmapDrawable;

import android.view.View;

public class Main {
    public static Bitmap getBitmapFromResId(View a, int id) {
        return ((BitmapDrawable) a.getResources().getDrawable(id)).getBitmap();
    }

    public static Bitmap getBitmapFromResId(Activity a, int id) {
        return ((BitmapDrawable) a.getResources().getDrawable(id)).getBitmap();
    }
}