Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { public static final String DEF_PREF_NAME = "Default"; public static String getStrValue(Context context, String name, String defValue) { SharedPreferences pref = getPref(context, DEF_PREF_NAME); return pref.getString(name, defValue); } public static SharedPreferences getPref(Context context, String name) { return context.getSharedPreferences(name, Context.MODE_PRIVATE); } }