Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Context; import android.content.SharedPreferences; import android.preference.PreferenceManager; public class Main { private static final String LASTUSED_PARAM = "lastUsed"; public static void updateLastUsedTimestamp(Context context) { SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context); SharedPreferences.Editor edit = prefs.edit(); edit.putLong(LASTUSED_PARAM, System.currentTimeMillis()); edit.commit(); } }