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 int getIntValue(Context context, String name, int defValue) { SharedPreferences pref = getPref(context, DEF_PREF_NAME); return pref.getInt(name, defValue); } public static SharedPreferences getPref(Context context, String name) { return context.getSharedPreferences(name, Context.MODE_PRIVATE); } }