Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { public static String KEY_SHOW_MAP_HINT = "show_map_hint"; public static void setMapHintVisibility(Context context, boolean visible) { SharedPreferences sharedPref = context.getSharedPreferences(KEY_SHOW_MAP_HINT, Context.MODE_PRIVATE); sharedPref.edit().putBoolean(KEY_SHOW_MAP_HINT, visible).apply(); } }