Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; import android.preference.PreferenceManager; public class Main { /** * Check if app has been run once or not */ public static Boolean firstTimeRun(Context context) { SharedPreferences appPreferences = PreferenceManager.getDefaultSharedPreferences(context); return appPreferences.getBoolean("prefappfirstrun", true); } }