Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { public static boolean getBooleanFromSP(Context context, String key) { SharedPreferences sp = getSharedPreferences(context); return sp.getBoolean(key, false); } public static boolean getBooleanFromSP(Context context, String key, boolean def) { SharedPreferences sp = getSharedPreferences(context); return sp.getBoolean(key, def); } public static SharedPreferences getSharedPreferences(Context context) { return context.getSharedPreferences("config", Context.MODE_PRIVATE); } }