get resource Layout ID - Android App

Android examples for App:Resource

Description

get resource Layout ID

Demo Code


//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*/
}

Related Tutorials