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