Java tutorial
//package com.java2s; import android.app.Activity; import android.content.Context; import android.content.SharedPreferences; public class Main { public static boolean getBooleanSp(Context context, String key) { SharedPreferences mySharedPreferences = context.getSharedPreferences("avalon", Activity.MODE_PRIVATE); return mySharedPreferences.getBoolean(key, false); } }