Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import android.content.Context;
import android.content.SharedPreferences;

public class Main {
    static final String AGE_PREFERENCES = "age_preferences";
    static final String AGE_LAST_PHONE_COUNT = "last_phone_count";

    static int loadLastPhoneCount(Context context) {
        SharedPreferences prefs = context.getSharedPreferences(AGE_PREFERENCES, Context.MODE_PRIVATE);

        return prefs.getInt(AGE_LAST_PHONE_COUNT, -1);
    }
}