Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import android.content.res.Resources;

import android.util.TypedValue;

public class Main {
    public static int getColorFromTheme(Resources.Theme theme, int color_id) {
        TypedValue typedValue = new TypedValue();
        theme.resolveAttribute(color_id, typedValue, true);
        return typedValue.data;
    }
}