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 getStyledColor(Context context, int attrId) {
        TypedArray ta = getTypedArray(context, attrId);
        int color = ta.getColor(0, 0);
        ta.recycle();

        return color;
    }

    private static TypedArray getTypedArray(Context context, int attrId) {
        int[] attrs = new int[] { attrId };
        return context.obtainStyledAttributes(attrs);
    }
}