Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.content.Context;

public class Main {
    private static final String DIGG_PREFERENCES = "digg.preferences";

    public static boolean setLastDispalyTime(Context context, long value) {
        return context.getSharedPreferences(DIGG_PREFERENCES, 0).edit().putLong("last_dig_time", value).commit();
    }
}