Here you can find the source of putPrefBoolean(Context c, String key, boolean value)
public static void putPrefBoolean(Context c, String key, boolean value)
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; import android.preference.PreferenceManager; public class Main { public static void putPrefBoolean(Context c, String key, boolean value) { SharedPreferences sp = PreferenceManager .getDefaultSharedPreferences(c); sp.edit().putBoolean(key, value).commit(); }//from ww w. j av a2s . c o m }