让Android屏幕不响应任何点击

FBI Warning:欢迎转载,但请标明出处:http://blog.csdn.net/codezjx/article/details/45220101,未经本人同意请勿用于商业用途,感谢支持!


原理:在顶层显示一个Dialog,让其不可Cancel(无法响应任何点击),并将其设置为最顶层的type,然后将其灰色区域设置为透明即可完成该效果(免Root,免系统权限,亲测包括Android5.0也有这个漏洞)。下面是详细代码与解析:

 

Dialog dialog = new AlertDialog.Builder(getApplicationContext(), R.style.Transparent)
.setView(view)
.create();
 
Window window = dialog.getWindow();
WindowManager.LayoutParams params = window.getAttributes();
params.gravity = Gravity.BOTTOM;
params.width = WindowManager.LayoutParams.WRAP_CONTENT;
params.height = WindowManager.LayoutParams.WRAP_CONTENT;
window.setAttributes(params);
window.setType(WindowManager.LayoutParams.TYPE_SYSTEM_ERROR);
 
dialog.setCancelable(false);
dialog.show();



Dialog的背景Style:

<style name="TransparentWindowBg">  
	<item name="android:windowBackground">@android:color/transparent</item>
</style> 


 

必须注意以下几点:

1:使用getApplicationContext()而不是Activity Context。因为使用activity context不能覆盖底部那条Navigation Bar,用application context则影响范围可以覆盖整个屏幕(屌爆了有木有)。

2:创建dialog的时候在构造函数传入一个Transparent的style,这个方法能dialog周围的灰色区域变为透明,更神不知鬼不觉,感觉有点猥琐了有木有。

3:设置window typeWindowManager.LayoutParams.TYPE_SYSTEM_ERROR,查看官方文档: internal system error windows, appear on top of everything they can,他是系统内部错误弹窗,显示在任何界面之上,权限这个是最高的。

4:最后Manifest加入以下权限

<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>

 

 

使用上面的方法的时候一定要注意:这层view会在锁屏界面之上、还有长按电源键的关机dialog之上。所以,屏蔽了之后,除非你长按power键关机,否则只能通过代码将其移除解决屏蔽。使用场景的话,各位程序猿发挥创造力吧!


你可能感兴趣的:(android,屏幕,禁止点击)