Since Android makes R class automatically with resources files under /res folder, using R class as final static is impossible.
I found nice solution to use jar file with res file. here is how I did.
in your source code which will be exported in jar file, DON'T USE R variable because it will be replaced with final static memory address in compile time.
Instead of using R, I made my own method below.
public static int getResourseIdByName(String packageName, String className, String name) {
Class r = null;
int id = 0;
try {
r = Class.forName(packageName + ".R");
Class[] classes = r.getClasses();
Class desireClass = null;
for (int i = 0; i < classes.length; i++) {
if (classes[i].getName().split("\\$")[1].equals(className)) {
desireClass = classes[i];
break;
}
}
if (desireClass != null) {
id = desireClass.getField(name).getInt(desireClass);
}
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (SecurityException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (NoSuchFieldException e) {
e.printStackTrace();
}
return id;
}
For example, if you have a layout named "main.xml", you can get it by calling method
int id = getResourceIdByName(context.getPackageName(), "layout", "main");
and if you have a string whose id is "text1", you can get it by calling method
int id = getResourceIdByName(context.getPackageName(), "string", "text1");
this method gives you your resource id in runtime. It uses reflection api to get R's status in runtime.
So now you can avoid using R variable by using this method.
- copy your res to target project.
- Run and Go.