Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.content.res.Resources;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;

public class Main {
    /**
     * Allows to get a bitmap (SCALED, i.e SHARP) from the resources
     * @param _res
     * @param _resId
     * @return
     */
    public static Bitmap getScaledResourceBitmap(Resources _res, int _resId) {
        BitmapFactory.Options options = new BitmapFactory.Options();
        options.inScaled = false;
        return BitmapFactory.decodeResource(_res, _resId, options);
    }
}