现在的位置: 首页 > 综合 > 正文

android 隐藏 返回键 Home键 隐藏最下面的NAVIGATION栏

2013年08月02日 ⁄ 综合 ⁄ 共 183字 ⁄ 字号 评论关闭

在setContentView前面加上

		 WindowManager.LayoutParams params = getWindow().getAttributes();   
	        params.systemUiVisibility =View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;   
	        getWindow().setAttributes(params);
		

需要4.0以上

抱歉!评论已关闭.