Skip to content

Instantly share code, notes, and snippets.

@acacha
Created January 21, 2015 08:57
Show Gist options
  • Save acacha/cdf8db04a659ebec1f8d to your computer and use it in GitHub Desktop.
Save acacha/cdf8db04a659ebec1f8d to your computer and use it in GitHub Desktop.
FirstTimeExecutionSharedPreferences
final String PREFS_NAME = "MyPrefsFile";
SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
if (settings.getBoolean("my_first_time", true)) {
//the app is being launched for first time, do something
Log.d("Comments", "First time");
// first time task
// record the fact that the app has been started at least once
settings.edit().putBoolean("my_first_time", false).commit();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment