Java tutorial
//package com.java2s; //License from project: Open Source License import android.content.Context; import android.content.SharedPreferences; public class Main { public static long getCacheTime(Context context) { SharedPreferences settings = context.getSharedPreferences("Preference", 0); long cacheTime = settings.getLong("CacheTime", 0); return cacheTime; } }