Java tutorial
//package com.java2s; //License from project: Open Source License import android.content.SharedPreferences; public class Main { public static String SAVED_LastNewsfeedUpdate = "last_newsfeed_update"; public static void saveLastNewsfeedUpdate(String last_update, SharedPreferences sPref) { SharedPreferences.Editor ed = sPref.edit(); ed.putString(SAVED_LastNewsfeedUpdate, last_update); ed.commit(); } }