Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Context; import android.support.annotation.ColorRes; public class Main { public static int getColor(Context context, @ColorRes int resId) { return context.getResources().getColor(resId); } }