How do you access the values in the res/values/string.xml resource file from the Android Activity class?
res/values/string.xml
Activity class
If getString(R.string.app_name); isn't working for you, you can pass context like this:
context.getString(R.string.app_name);