Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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();
    }
}