Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { public final static String XML_Settings = "settings"; private static SharedPreferences settings; public static boolean getSharedPreBoolean(Context context, String key) { settings = context.getSharedPreferences(XML_Settings, 0); return settings.getBoolean(key, false); } }