Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { private static final String CONFIG_NAME = "edp_config"; public static void setStringValue(Context context, String key, String value) { SharedPreferences sp = context.getSharedPreferences(CONFIG_NAME, Context.MODE_PRIVATE); SharedPreferences.Editor editor = sp.edit(); editor.putString(key, value).commit(); } }