Java tutorial
//package com.java2s; //License from project: Open Source License import android.content.Context; import android.content.SharedPreferences; public class Main { private static String getPreferenceString(SharedPreferences sharedPref, Context context, int StrRes, int StrResDefValue) { return sharedPref.getString(context.getString(StrRes), context.getString(StrResDefValue)); } private static String getPreferenceString(SharedPreferences sharedPref, Context context, int StrRes, String defValue) { return sharedPref.getString(context.getString(StrRes), defValue); } }