Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; import android.content.SharedPreferences.Editor; public class Main { private static final String sharedPrefsFile = "CommonSharedPrefs"; public static void saveBooleanPreferences(String key, boolean value, Context ctx) { SharedPreferences sp = ctx.getSharedPreferences(sharedPrefsFile, Context.MODE_PRIVATE); Editor edit = sp.edit(); edit.putBoolean(key, value); edit.commit(); } }