WEB开发网
开发学院手机开发Android 开发 android屏蔽返回键和Home键 阅读

android屏蔽返回键和Home键

 2012-09-06 13:58:24 来源:WEB开发网   
核心提示://屏蔽返回键的代码:public boolean onKeyDown(int keyCode,KeyEvent event){switch(keyCode){case KeyEvent.KEYCODE_HOME:return true;case KeyEvent.KEYCODE_BACK:return true;ca
//屏蔽返回键的代码:
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();
}

Tags:android 屏蔽 返回

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接