Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.SharedPreferences;

public class Main {
    private static SharedPreferences sp = null;

    public static Integer getInt(String key) {
        return Integer.valueOf(sp.getInt(key, -1));
    }

    public static Integer getInt(String key, int defVal) {
        return Integer.valueOf(sp.getInt(key, defVal));
    }
}