Java tutorial
//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); } }