Java tutorial
//package com.java2s; import android.content.Context; import android.util.TypedValue; public class Main { public static int getAttributeColor(Context context, int attributeId) { TypedValue typedValue = new TypedValue(); context.getTheme().resolveAttribute(attributeId, typedValue, true); return context.getResources().getColor(typedValue.resourceId); } }