Android: Beat system, monitor home button

Source: Internet
Author: User
Tags stub

This is an Android learning note about the home key

The question of the proposed

The Android Home Key System is responsible for monitoring and capturing the system to automatically process it. Sometimes, the processing of the system often does not follow our intention, want to deal with the event after clicking Home, then how to do?

Solution to the problem

First prohibit the home button, and then in the onkeydown process key value, click the Home button when the program shut down, or as you xxoo.

@Override Public
      
 boolean onKeyDown (int keycode, keyevent event)  
      
{//TODO auto-generated method stub  
      
  if ( Keyevent.keycode_home==keycode)  
      
    android.os.Process.killProcess (Android.os.Process.myPid ());  
      
     Return Super.onkeydown (KeyCode, event);  
      
  }  
      
       
      
@Override public
      
 void Onattachedtowindow ()  
      
 {//TODO auto-generated the method stub  
      
    This.getwindow (). SetType (WindowManager.LayoutParams.TYPE_KEYGUARD);  
      
    Super.onattachedtowindow ();  
      
 }

Add permission to prohibit home key

<uses-permission android:name= "Android.permission.DISABLE_KEYGUARD" ></uses-permission>

See more highlights of this column: http://www.bianceng.cnhttp://www.bianceng.cn/OS/extra/

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.