Android examples for App:Resource
get resource Drawable ID
//package com.java2s; import android.content.Context; public class Main { public static int getDrawableID(Context context, String key) { return context.getResources().getIdentifier(key, "drawable", context.getPackageName()); }/* ww w . j av a 2 s.c o m*/ }