Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.Context;

public class Main {
    public static float getThemeDimen(Context context, String name) {
        int id = getThemeIdentifier(context, name, "dimen");
        return context.getResources().getDimension(id);
    }

    public static int getThemeIdentifier(Context context, String name, String type) {
        return context.getResources().getIdentifier(name, type, context.getPackageName());
    }
}