Android examples for Android OS:SharedPreferences
write Integer to SharedPreferences
//package com.book2s; import android.content.Context; import android.content.SharedPreferences; import android.content.SharedPreferences.Editor; public class Main { public static final String PREF_NAME = "FILTER_PREFERENCES"; public static final int MODE = Context.MODE_PRIVATE; public static void writeInteger(Context context, String key, int value) { getEditor(context).putInt(key, value).commit(); }/* www .j a v a 2 s.c o m*/ public static Editor getEditor(Context context) { return getPreferences(context).edit(); } public static SharedPreferences getPreferences(Context context) { return context.getSharedPreferences(PREF_NAME, MODE); } }