Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Context; import android.content.SharedPreferences; import android.preference.PreferenceManager; import android.util.Log; public class Main { private static final String TAG = "AccountUtils"; private static final String PREF_CHOSEN_ACCOUNT = "chosen_account"; public static void setChosenAccountName(final Context context, final String accountName) { Log.d(TAG, "Chose account " + accountName); SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(context); sp.edit().putString(PREF_CHOSEN_ACCOUNT, accountName).commit(); } }