Reputation: 12905
There are some string resources in my android application and some helper-classes, which are only java-classes (no android classes).
Is it possible to get string value of string resource variable from an java class?!
Mur
Upvotes: 0
Views: 752
Reputation: 8355
You need a Context to access any resource string value. It can be either an activity context or the Application context.
Upvotes: 1