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 getColorOfRes(Context context, @ColorRes int res) { return context.getResources().getColor(res); } }