Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { private static final String PREFERENCE_NAME = "update_config"; public static void putStringToSP(Context con, String key, String value) { SharedPreferences pref = con.getSharedPreferences(PREFERENCE_NAME, 0); SharedPreferences.Editor editor = pref.edit(); editor.putString(key, value); editor.commit(); } }