Android's permanent login and logout login

Source: Internet
Author: User

First, permanent landing

Sharedprefrence Store UserID and password

Private String File = "saveusernamepwd";//For saving sharedpreferences files
Private Sharedpreferences SP = null;//declares a sharedpreferences

SP = Getsharedpreferences (FILE, mode_private);//Initialize Sharedprefrences

protected void InitData () {
Name = sp.getstring ("name", "");
Password = sp.getstring ("Password", "" ");
Nameet.settext (name);
Passwordet.settext (password);
Editor editor = Sp.edit ();
Editor.putstring ("Name", Nameet.gettext (). toString ());
Editor.putstring ("Password", Passwordet.gettext (). toString ());
Editor.commit ();
}

The following is written in the login click event:

    

if (sp = = null) {
SP = Getsharedpreferences (FILE, mode_private);
}
Editor edit = Sp.edit ();
Edit.putstring ("Name", Nameet.gettext (). toString ());
Edit.putstring ("Password", Passwordet.gettext (). toString ());
Edit.commit ();

Second, log off login

1. Empty the data in sharedpreferences

Private Sharedpreferences sp;

public void Clearnuserinfo () {

SP = getsharedpreferences ("Saveusernamepwd", mode_private);
Sp.edit (). Clear (). commit ();
}

2. Empty the task stack (taskstack)

Intent logoutintent = new Intent (settinghomeactivity.this, Loginactivity.class);
Logoutintent.setflags (Intent.flag_activity_clear_top | Intent.flag_activity_new_task);
StartActivity (logoutintent);

All ok!

Android's permanent login and logout login

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.