How to disable home key

From wizarPOS
Revision as of 05:42, 24 April 2018 by Mahong (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Disable home key in apk

  • Define the follow permission, after the permission defined, the app will get the event of home key or back key.
  • catch the event when the home key or back key has been pressed.

Permission

 android.permission.CLOUDPOS_DISABLE_HOME_KEY

The app declare the permission in manifest.

Disable home key in activity

Define the follow permission, after the permission defined, then set the activity window type is TYPE_KEYGUARD or TYPE_KEYGUARD_DIALOG, will catch the event when the home key or back key has been pressed. For example:

public void onAttachedToWindow() {                                      
	super.onAttachedToWindow();                                           
	try {                                                                 
		this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD); 
	} catch (Throwable e) {                                               
		e.printStackTrace();                                                
	}                                                                     
}

Permission

 android.permission.CLOUDPOS_DISABLE_HOME_KEY_IN_ACTIVITY

The app declare the permission in manifest.