Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { public static final String FIRST_LOGIN = "is_first_login"; private static final String WEATHER_PREFERENCES = "DilyWeatherPreferences"; public static boolean isFirstLogin(Context context) { SharedPreferences preferences = getSharedPreferences(context); final boolean isFirstLogin = preferences.getBoolean(FIRST_LOGIN, true); return isFirstLogin; } private static SharedPreferences getSharedPreferences(Context context) { return context.getSharedPreferences(WEATHER_PREFERENCES, Context.MODE_PRIVATE); } }