Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { private static final String GENERAL_PREFS_ID = "general_prefs"; private static SharedPreferences getPrefs(Context context) { return context.getSharedPreferences(GENERAL_PREFS_ID, Context.MODE_PRIVATE); } }