Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { static String PREFS_NAME = "spacewave"; public static void setApplicationBooleanPreferences(Context context, String name, boolean value) { SharedPreferences sharedPreferences = context.getSharedPreferences(PREFS_NAME, 0); SharedPreferences.Editor editor = sharedPreferences.edit(); editor.putBoolean(name, value); editor.commit(); } }