Android examples for App:Resource
get resource Layout ID
//package com.java2s; import android.content.Context; public class Main { public static int getLayoutID(Context context, String key) { return context.getResources().getIdentifier(key, "layout", context.getPackageName()); }/*w w w . ja v a 2 s .com*/ }