Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { public static final String PREFERENCES_FIRST_IN = "app_first_in"; public static final String KEY_FIRST_FULL_SCREEN = "is_first_full_screen"; public static boolean isFirstFullScreen(Context ctt) { if (ctt != null) { SharedPreferences sp = ctt.getSharedPreferences(PREFERENCES_FIRST_IN, Context.MODE_PRIVATE); return sp.getBoolean(KEY_FIRST_FULL_SCREEN, true); } return false; } }