Android Screen Home button

Source: Internet
Author: User

1, before the Android 4.0 version, can be in the activity of Onattachedtowindow Add the following code implementation:


@Override

public void Onattachedtowindow ()

    {

GetWindow (). SetType (WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG);

Super.onattachedtowindow ();

    }


2, 4.0 after the version, the processing method is as follows:

Define a constant yourself first:

Public static final int flag_homekey_dispatched = 0x80000000;


Then, in OnCreate, add the code before Setcontentview:

This.getwindow (). SetFlags (flag_homekey_dispatched, flag_homekey_dispatched);


Finally, in the rewrite onkeydown, add:

if (keycode = = keyevent.keycode_home)

{

return true;

}


This article from "Dan Dan Home" blog, reproduced please contact the author!

Android Screen Home button

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.