Java tutorial
//package com.java2s; import android.content.SharedPreferences; import android.content.SharedPreferences.Editor; public class Main { public static void setBooleanSharedPerference(SharedPreferences sp, String key, boolean value) { Editor editor = sp.edit(); editor.putBoolean(key, value); editor.commit(); } }