Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { public static Long getLongFromSP(Context context, String key) { SharedPreferences sp = getSharedPreferences(context); return sp.getLong(key, 0L); } public static Long getLongFromSP(Context context, String key, long def) { SharedPreferences sp = getSharedPreferences(context); return sp.getLong(key, def); } public static SharedPreferences getSharedPreferences(Context context) { return context.getSharedPreferences("config", Context.MODE_PRIVATE); } }