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 getResourceId(Context context, int attr) {
        return getResourceId(context, attr, 0);
    }

    public static int getResourceId(Context context, int attr, int defaultValue) {
        TypedArray ta = context.obtainStyledAttributes(new int[] { attr });
        int resourceId = ta.getResourceId(0, defaultValue);
        ta.recycle();

        return resourceId;
    }
}