Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Context; import android.content.SharedPreferences; public class Main { public static final String DEFAULT_FILE_NAME = "playTogetherAttr"; public static void setIntProperty(Context context, String key, int value) { SharedPreferences.Editor editor = context.getSharedPreferences(DEFAULT_FILE_NAME, Context.MODE_PRIVATE) .edit(); editor.putInt(key, value); editor.commit(); } }