简体   繁体   English

android中的屏幕截图功能

[英]Screen shot feature in android

How to disable the screen shot feature from the application in ice cream sandwich android devices ? 如何从冰淇淋三明治android设备中的应用程序禁用屏幕快照功能? Any help would be appreciated. 任何帮助,将不胜感激。

Why don't you add this line in your activity class. 为什么不在活动班级中添加此行。 This will do the trick. 这将达到目的。

     //This disables screen shot to be taken for current activity
    getWindow().setFlags(LayoutParams.FLAG_SECURE, LayoutParams.FLAG_SECURE);

You may want to have a look on this Link 您可能想看看这个链接

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM