Difference between getString() and getResources.getString()

They are the same as Activity.getString(int) does exactly that:

 public final String getString(int resId) {
     return getResources().getString(resId);
 }

Leave a Comment