Here you can find the source of getStringFromXml(Context context, int resId)
public static String getStringFromXml(Context context, int resId)
//package com.java2s; //License from project: Apache License import android.content.Context; public class Main { public static String getStringFromXml(Context context, int resId) { return context.getString(resId); }/*from www . j a v a 2s. c o m*/ }