Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { private static String Mode = "mode"; public static void setChangeMode(Context ctx, int mode) { SharedPreferences sp = ctx.getSharedPreferences("config_mode", Context.MODE_PRIVATE); sp.edit().putInt(Mode, mode).commit(); } }