Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Context; import android.content.SharedPreferences; public class Main { final static String SPACENAMA = "config"; public static void putboolean(Context context, String key, boolean vauels) { SharedPreferences sharedPreferences = context.getSharedPreferences(SPACENAMA, context.MODE_PRIVATE); sharedPreferences.edit().putBoolean(key, vauels).commit(); } }