I am working on an application which requires me to create a log in screen. The way I have planned to do this is have 2 tabs log in, sign up and what I wanted to know is I want to be able to have a user sign up and if they choose remember password next time they load the app it should go straight to the main menu. Although selecting sign out in the main menu should load up the tabs with the log in information when they start the app again.

The question I have is how do I implement the remember me button so next time it skips the log in and how do I implement the sign out so next time the app loads the log in screen.

Thank you in advance! (",)

Sri

link|improve this question

2  
PLEASE DON'T SHOUT (all caps = shouting). I've fixed your title for you so it doesn't shout. – T.J. Crowder Jan 15 at 14:17
feedback

3 Answers

up vote 1 down vote accepted

First Log In :

SharedPreferences sSession = PreferenceManager.getDefaultSharedPreferences(context);
Editor ePrefrences = sSession.edit();
ePrefrences.putString("id", "user id"); 
ePrefrences.putString("password", "user password");
ePrefrences.putBoolean("successfullylogin", true);
ePrefrences.commit();

Second Log In :

SharedPreferences sSession = PreferenceManager.getDefaultSharedPreferences(this);
if (sSession .getBoolean("successfullylogin", false)) {
//get user name and password
sUser = sSession.getString("id", "");
sPassword = sSession.getString("password", "");
//start activity
} 
else {
//prepare for normal login 
}
link|improve this answer
Thank you for the example you have provided me with I really appreciate it, but the problem is if I was to use preference would I be able to check the saved preferences Eg Login detail with the database? As well as wouldn’t it be better to use a database SQLlite to store the registration and retrieve the login information from the database. Following this could I then use preferences to store the login information to check with the database. Hope you understand what i am trying to say. Thanks in advance (",) Sri – Sri Jan 18 at 3:01
welcome @Sri its possible to do that – Basbous Jan 18 at 7:57
feedback

Throw the remembered answer into the SharedPreferences and read it when your activity starts and process it accordingly.

link|improve this answer
feedback

I would probably use Internal Storage to store the username/password for the remember me button. When the app loads, first check if the user/pass is already saved. If so then direct to the tabs, if not then direct to the log in screen.

link|improve this answer
I think SharedPreferences is a better method, since that allows you to store key:value pairs. See @JoxTraex and @Basbous answers. – Jivings Jan 15 at 15:26
feedback

Your Answer

 
or
required, but never shown

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