I\'ve found the R.string pretty awesome for keeping hardcoded strings out of my code, and I\'d like to keep using it in a utility class that works with models i
R.string
In MyApplication, which extends Application:
MyApplication
Application
public static Resources resources;
In MyApplication's onCreate:
onCreate
resources = getResources();
Now you can use this field from anywhere in your application.