在OnCreate()方法内
MobclickAgent.onError(this);//友盟错误统计

requestWindowFeature(Window.FEATURE_NO_TITLE);//设置无标题

getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);//设置全屏
getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD);//网上都说是屏蔽HOME键,但是操作起来发现没有效果,我再查查是什么作用。。。
getWindow().setFormat(PixelFormat.RGBA_8888);//防止图片失真

  

height = this.getWindowManager().getDefaultDisplay().getHeight();//获取设备高度
        width = this.getWindowManager().getDefaultDisplay().getWidth();//获取设置宽度

 

相关文章: