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 {
    public static final String PREFS_KEY_STAGE = "prefs_key_stage";

    /**
     * Method to get the last assumed Stage of the active session 
     * 
     * @param context Context
     * @return Last assumed Stage of the active session 
     */
    public static int getActiveSessionStage(Context context) {
        SharedPreferences prefs = context.getSharedPreferences(context.getPackageName(), Context.MODE_PRIVATE);

        return prefs.getInt(PREFS_KEY_STAGE, 0);
    }
}