Here you can find the source of getPrefBoolean(Context c, String key, boolean defValue)
public static boolean getPrefBoolean(Context c, String key, boolean defValue)
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; import android.preference.PreferenceManager; public class Main { public static boolean getPrefBoolean(Context c, String key, boolean defValue) { SharedPreferences sp = PreferenceManager .getDefaultSharedPreferences(c); return sp.getBoolean(key, defValue); }/*from w w w . j a v a 2s.c o m*/ }