How can I show an AltertDialog after 3 launches once? I only know how to do something at the first start of the App(I am a beginner with Android and Sharedpreferences):
if (settings.getBoolean("my_first_time", true)) {
Log.d("Comments", "First time");
// Action which is done at first launch
// save first launch
settings.edit().putBoolean("my_first_time", false).commit();
} else {
//not first time
}
Thank's, Felix