Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; import android.preference.PreferenceManager; public class Main { public static final String LOGIN = "login_status"; public static void storeLoginStatus(Context context, String loginStatus) { SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context); SharedPreferences.Editor editor = prefs.edit(); editor.putString(LOGIN, loginStatus); editor.apply(); } }