Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { public static long getSettingLongValue(Context context, String path, String key) { SharedPreferences settingInfo = context.getSharedPreferences(path, 0); long value = settingInfo.getLong(key, 0l); return value; } }