Java tutorial
//package com.java2s; //License from project: Open Source License import android.content.Context; import android.content.SharedPreferences; public class Main { public static final String TRACKER_PREFERENCES = "trackerPreferences"; public static String getFromPreferences(String key, Context mContext) { SharedPreferences preferences = mContext.getSharedPreferences(TRACKER_PREFERENCES, Context.MODE_PRIVATE); return preferences.getString(key, null); } }