您现在的位置: 万盛学电脑网 >> 程序编程 >> 网络编程 >> 安卓开发 >> 正文

android屏蔽返回键和Home键

作者:佚名    责任编辑:admin    更新时间:2022-06-22

//屏蔽返回键的代码:
public boolean onKeyDown(int keyCode,KeyEvent event)
{
	switch(keyCode)
	{
		case KeyEvent.KEYCODE_HOME:return true;
		case KeyEvent.KEYCODE_BACK:return true;
		case KeyEvent.KEYCODE_CALL:return true;
		case KeyEvent.KEYCODE_SYM: return true;
		case KeyEvent.KEYCODE_VOLUME_DOWN: return true;
		case KeyEvent.KEYCODE_VOLUME_UP: return true;
		case KeyEvent.KEYCODE_STAR: return true;
	}
	return super.onKeyDown(keyCode, event);
}
//屏蔽home键的代码:
public void onAttachedToWindow() 
{
	this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD);
	super.onAttachedToWindow();
}