Android listens to the HOME Key in the simplest way.

Source: Internet
Author: User

Android listens to the HOME Key in the simplest way.

Public static final int FLAG_HOMEKEY_DISPATCHED = 0x80000000; public void onCreate (Bundle savedInstanceState) {super. onCreate (savedInstanceState); this. getWindow (). setFlags (FLAG_HOMEKEY_DISPATCHED, FLAG_HOMEKEY_DISPATCHED); // key code setContentView (R. layout. main);} Then rewrite the onKey event.



In Android, how does one listen to the Back and Home keys?

Inherit Activity
Override OnKeyDown ()
Print the key value.
It seems to be on different mobile phones. The corresponding key values are different.
Obtain the Back and Home key values.
Then match the key value. Write what you want to do.
Back can be written as follows:
Public boolean onKeyDown (int keyCode, KeyEvent event ){
// TODO Auto-generated method stub
If (keyCode = KeyEvent. KEYCODE_BACK ){

}
Return super. onKeyDown (keyCode, event );
}

Can the android program listen to the home Key in the following ways? If it is feasible, you will receive 100 points.



 

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.