Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.Context;

import android.content.SharedPreferences;

import android.preference.PreferenceManager;

public class Main {
    public static long getCanelNotificationTime(Context context) {
        long time = 0;
        if (context != null) {
            SharedPreferences settings = PreferenceManager.getDefaultSharedPreferences(context);
            time = settings.getLong("cancel_time", System.currentTimeMillis());
        }
        return time;
    }
}