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