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;

public class Main {
    private static final String PREFERENCE_NAME = "update_config";
    private static final String CONFIG_DOWNLOAD_ID = "download_id";

    public static long getDownloadId(Context context) {
        SharedPreferences pref = context.getSharedPreferences(PREFERENCE_NAME, 0);
        return pref.getLong(CONFIG_DOWNLOAD_ID, 0);
    }
}