Java tutorial
//package com.java2s; //License from project: Open Source License import android.content.Context; import android.content.SharedPreferences; import android.preference.PreferenceManager; public class Main { public static final String PREF_MYTBA_ENABLED = "mytba_enabled"; public static boolean isMyTBAEnabled(Context context) { SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context); return prefs.getBoolean(PREF_MYTBA_ENABLED, false); } }