Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; import android.content.SharedPreferences.Editor; public class Main { protected static String PREFS_NAME = "my_pref"; public static void putSharedPreferencesBoolean(Context context, String key, boolean val) { SharedPreferences preferences = context.getSharedPreferences(PREFS_NAME, 0); Editor edit = preferences.edit(); edit.putBoolean(key, val); edit.commit(); } }