Java tutorial
//package com.java2s; //License from project: Open Source License import android.content.Context; import android.content.SharedPreferences; public class Main { public static void setCacheTime(Context context, long time) { SharedPreferences settings = context.getSharedPreferences("Preference", 0); settings.edit().putLong("CacheTime", time).commit(); } }