Java tutorial
//package com.java2s; import android.content.Context; import android.content.res.TypedArray; import android.util.TypedValue; public class Main { public static int getPrimaryColor(Context context) { TypedValue typedValue = new TypedValue(); TypedArray typedArray = context.obtainStyledAttributes(typedValue.data, new int[] { 16843827 }); int accent = typedArray.getColor(0, 0); typedArray.recycle(); return accent; } }