Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.res.Resources;

public class Main {
    static public int getIdentifierInOtherNamespace(Resources res, int id, String namespace) {
        String idname = res.getResourceEntryName(id);
        String pkg = res.getResourcePackageName(id);
        return res.getIdentifier(idname, namespace, pkg);
    }
}