Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { private final static String PREF_NAME = "push_msg"; public static boolean getBoolean(Context ctx, String key, boolean defaultValue) { SharedPreferences spf = ctx.getSharedPreferences(PREF_NAME, Context.MODE_PRIVATE); return spf.getBoolean(key, defaultValue); } }