Java tutorial
//package com.java2s; //License from project: Open Source License import android.content.res.Resources; import android.util.TypedValue; public class Main { public static int getColorFromTheme(Resources.Theme theme, int color_id) { TypedValue typedValue = new TypedValue(); theme.resolveAttribute(color_id, typedValue, true); return typedValue.data; } }