Simulate the effect of pressing the HOME Key in Android Application Development

Source: Internet
Author: User

In Android Application Development, we do not want users to directly press the Back key to exit the Activity, but hide the application to the background, similar to pressing the Home Key.

The following provides sample code. For more information, see.

1 public boolean onKeyDown (int keyCode, KeyEvent event) {2 if (keyCode = KeyEvent. KEYCODE_BACK) {3 Intent intent = new Intent (Intent. ACTION_MAIN); 4 intent. setFlags (Intent. FLAG_ACTIVITY_NEW_TASK); 5 intent. addCategory (Intent. CATEGORY_HOME); 6 startActivity (intent); 7 return true; 8} 9 return super. onKeyDown (keyCode, event); 10}
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.