Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { private final static String PREFERENCES = "map"; public static void adicionarValores(Context context, String chave, String valor) { SharedPreferences settings = context.getSharedPreferences(PREFERENCES, 0); settings.edit().putString(chave, valor).commit(); } }