Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { public static final String NOTIFICATION_TIME_SHARED = "notification_time_shared"; public static final String NOTIFICATION_TIME = "notification_time"; public static long getNotificationTime(Context context) { SharedPreferences preferences = context.getSharedPreferences(NOTIFICATION_TIME_SHARED, 0); return preferences.getLong(NOTIFICATION_TIME, 0); } }