屏蔽HOME按键 ?

/**

     * 屏蔽home按键

     */

    @Override

    public void onAttachedToWindow()

    {

        this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD);

        super.onAttachedToWindow();

    }



Who can fix it at Android 4.0?

你可能感兴趣的:(屏蔽HOME按键 ?)