Java tutorial
//package com.java2s; //License from project: Open Source License import android.content.Context; import android.os.Build; import android.support.annotation.NonNull; public class Main { @SuppressWarnings("deprecation") public static int getColor(@NonNull Context context, int colorId) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { return context.getColor(colorId); } return context.getResources().getColor(colorId); } }