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