Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { public static final String SHARED_PREFERENCE_NAME = "SP"; public static int getInt(Context context, String key) { SharedPreferences shared = context.getSharedPreferences(SHARED_PREFERENCE_NAME, Context.MODE_PRIVATE); int value = shared.getInt(key, 0); return value; } }