I am making an android application but i can't figure out how i can make the setup screen show up only the first time. This is how the application is going to work: User launches the application after installation and is being shown the welcome/setup screen. And once the user is done with the setup, the setup screens will never appear again unless the user reinstalls the application.

How can i make this happen??? Please help and thanks SO much in advance!

link|improve this question
feedback

1 Answer

Use SharedPreferences to test whether its the first start or not.

Note: The below code was not tested.

In your onCreate (or whereever you want to do things depending on first start or not), add

// here goes standard code 

SharedPreferences pref = getSharedPreferences("mypref", MODE_PRIVATE);

if(pref.getBoolean("firststart", true)){
   // update sharedpreference - another start wont be the first
   SharedPreferences.Editor editor = pref.edit();
   editor.putBoolean("firststart", false);
   editor.commit(); // apply changes

   // first start, show your dialog | first-run code goes here
}

// here goes standard code
link|improve this answer
So where is it that the default code goes in and where the first run code goes into your code??? – MySoftware Jan 2 at 16:32
@MySoftware I've added hints as comments – Michael Jan 2 at 16:51
oh, sorry, didn't see the "//Here goes standard code" lol. But i get this error on "getSharedPreferences": The method getSharedPreferences(String, int) in the type ContextWrapper is not applicable for the arguments (String) – MySoftware Jan 2 at 16:58
What should i do with the error above??? – MySoftware Jan 2 at 17:13
I've just watched your other questions and answers. Don't take it personally, but if you can't solve very straight-forward warnings or ask good-english-style questions, your probably not yet ready for programming. – Michael Jan 2 at 18:46
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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