Android HOME键屏蔽

 
Android的HOME键屏蔽需要在activity中重写
@Override
	public void onAttachedToWindow() {
		this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD);
	        super.onAttachedToWindow();
	}

你可能感兴趣的:(android)