Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { private static String FILE_NAME = "WasCopy"; public static final String DO_NOT_SHOW_FLAG = "DO_NOT_SHOW_FLAG"; public static boolean getNotiDoNotShowFlag(Context context) { SharedPreferences sd = context.getSharedPreferences(FILE_NAME, Context.MODE_PRIVATE); return sd.getBoolean(DO_NOT_SHOW_FLAG, true); } }