Implementation of the "logout" button callback and the button callback

Source: Internet
Author: User

Implementation of the "logout" button callback and the button callback

@ OnClick (R. id. btn_user_logout) public void logout (View view) {// "log out" button callback method // 1. clear SharedPreferences sp = this. getSharedPreferences ("user_info", Context. MODE_PRIVATE); sp. edit (). clear (). commit (); // The data cleanup operation must be submitted. After submission, the file still exists, but the data in the file is cleared. // 2. delete file filesDir; if (Environment. getExternalStorageState (). equals (Environment. MEDIA_MOUNTED) {// determine whether the SD card is mounted // Path 1: storage/sdcard/Android/data/package name/files filesDir = this. getExternalFilesDir ("");} else {// internal storage of the mobile phone // path: data/package name/files filesDir = this. getFilesDir ();} File file = new File (filesDir, "icon.png"); if (file. exists () {file. delete (); // delete objects in storage} // 3. destroy all activities this. removeAll (); // 4. re-enter the home page this. goToActivity (MainActivity. class, null );}

 

Related Article

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.