Java tutorial
//package com.java2s; import android.content.Context; public class Main { public static int getResId(Context context, String id, String type) { return context.getResources().getIdentifier(id, type, context.getPackageName()); } }