Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Context; import android.support.annotation.StringRes; public class Main { public static String getStringOfRes(Context context, @StringRes int res) { return context.getResources().getString(res); } }