Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { public static int getUserId(Context context) { int userId = 0; if (context != null) { SharedPreferences sp = context.getSharedPreferences("userInfo", Context.MODE_PRIVATE); userId = sp.getInt("USERID", 0); } return userId; } }