Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; import android.preference.PreferenceManager; public class Main { public static final String PREF_KEY_THEME = "pref_key_login_setting"; public static boolean logout(Context context) { SharedPreferences sharedPref = PreferenceManager.getDefaultSharedPreferences(context); sharedPref.edit().putString(PREF_KEY_THEME, "").apply(); return true; } }