Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Context; import android.graphics.drawable.Drawable; import android.os.Build; public class Main { public static Drawable getDrawable(Context context, int color) { if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.LOLLIPOP_MR1) { //noinspection deprecation return context.getResources().getDrawable(color); } else { return context.getDrawable(color); } } }