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