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 PREF_FILE_APPS = "com.twinone.locker.prefs.apps"; public static SharedPreferences appsPrefs(Context c) { return c.getSharedPreferences(PREF_FILE_APPS, Context.MODE_PRIVATE); } }