Java tutorial
//package com.java2s; import android.content.res.Resources; import android.util.TypedValue; public class Main { public static float getFloatConstant(final Resources res, final int constant) { TypedValue outValue = new TypedValue(); res.getValue(constant, outValue, true); return outValue.getFloat(); } }