Java tutorial
//package com.java2s; // Licensed to the Apache Software Foundation (ASF) under one import android.content.Context; import android.content.SharedPreferences; import android.preference.PreferenceManager; public class Main { public static void setDefaults(String key, String value, Context context) { SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context); SharedPreferences.Editor editor = prefs.edit(); editor.putString(key, value); editor.commit(); } }