Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.app.Activity;
import android.content.Context;
import android.content.SharedPreferences;

public class Main {
    public static int getIntSp(Context context, String key) {
        SharedPreferences mySharedPreferences = context.getSharedPreferences("avalon", Activity.MODE_PRIVATE);
        return mySharedPreferences.getInt(key, 5);
    }
}