Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.content.Context;
import android.graphics.drawable.Drawable;
import android.os.Build;

public class Main {
    public static Drawable getDrawable(Context context, int resId) {
        if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {

            return context.getDrawable(resId);
        }
        return context.getResources().getDrawable(resId);
    }
}