Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { public static final String USER_INFO_PREFS_NAME = "UserInfo"; /** * Get the log in settings * @param context The Context to use * @return The log in settings */ private static SharedPreferences getLogInSettings(Context context) { return context.getSharedPreferences(USER_INFO_PREFS_NAME, 0); } }