Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.Context;

import android.content.res.TypedArray;

public class Main {
    public static int getThemeColor(Context context, int attrRes) {
        TypedArray typedArray = context.obtainStyledAttributes(new int[] { attrRes });
        int color = typedArray.getColor(0, 0xffffff);
        typedArray.recycle();
        return color;
    }
}