Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Context; import android.util.TypedValue; public class Main { private static TypedValue sTypedValue = new TypedValue(); public static int getThemeAttrColor(Context context, int attributeColor) { context.getTheme().resolveAttribute(attributeColor, sTypedValue, true); return sTypedValue.data; } }