views:

40

answers:

1

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

+1  A: 

You need a Context to access any resource string value. It can be either an activity context or the Application context.

DavLink