I want to put a prompt into an app about requirements for it and such, but I only want this to show up the first time the app is opened. The only reason why I know it is possible is because I have seen it in other apps. I have no idea where to begin implementing it.

Does anyone know how to?

link|improve this question

1  
Not knowing anything about android per se, but you surely can store some content locally on the device. Then there you have it: Show the feature, save on the device in some file or whatever that you have shown it and check that file/whatever when you open the app to decide if you show the prompt or not. – TToni Dec 17 '10 at 15:07
feedback

3 Answers

up vote 2 down vote accepted

What you are looking for is called SharedPreferences. Using that, you can do inside the activity:

SharedPreferences prefs = getSharedPreferences();
if (prefs.getBoolean("is_one_time_action_done", false)) {
  SharedPreferences.Editor ed = prefs.edit();
  ed.putBoolean("is_one_time_action_done", true);
  ed.commit();

  // Do your one time action here
}
link|improve this answer
This is perfect. Thanks. – NotACleverMan Dec 17 '10 at 16:04
feedback

Use SharedPreferences. if there is one, then you have already shown the requirements. Else, show the dialog and save the preference.

link|improve this answer
feedback

Just use the shared preferences to store a boolean flag.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.