Implementing a login screen with tabs

417 Views Asked by At

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

3

There are 3 best solutions below

1
On BEST ANSWER

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 
}
1
On

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.

0
On

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