Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { public static final String PREFERNCE_FILE_NAME = "obj"; public static boolean getReadMode(Context context, String key, boolean defValue) { SharedPreferences prefe = context.getSharedPreferences(PREFERNCE_FILE_NAME, Context.MODE_PRIVATE); return prefe.getBoolean(key, defValue); } }