Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { public static String SHARE_NAME = "share"; public static boolean getBoolean(Context ctx, String key, boolean defValue) { return getPreference(ctx).getBoolean(key, defValue); } private static SharedPreferences getPreference(Context ctx) { return ctx.getSharedPreferences(SHARE_NAME, Context.MODE_PRIVATE); } }