Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Context; import android.content.SharedPreferences; public class Main { private static final String CONFIG = "config"; private static final String KEY_BC = "balloon_count"; public static final int DEFAULT_BALLOON_COUNT = 5; public static int balloonCount(Context context) { SharedPreferences sp = context.getSharedPreferences(CONFIG, Context.MODE_PRIVATE); return sp.getInt(KEY_BC, DEFAULT_BALLOON_COUNT); } }