Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { protected static String PREFS_NAME = "my_pref"; public static long getSharedPreferencesLong(Context context, String key, long _default) { SharedPreferences preferences = context.getSharedPreferences(PREFS_NAME, 0); return preferences.getLong(key, _default); } }