Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; import android.preference.PreferenceManager; public class Main { private static boolean getBoolean(String key, Context context) { SharedPreferences settings = createSharedPreferences(context); return settings.getBoolean(key, false); } private static SharedPreferences createSharedPreferences(Context context) { return PreferenceManager.getDefaultSharedPreferences(context); } }