I noticed that the Activity class has two different methods to get a String resource. This is possible by using:
Activity
getString(int resId)
They are the same as Activity.getString(int) does exactly that:
public final String getString(int resId) { return getResources().getString(resId); }