美文网首页
Unexpected error while obtaining

Unexpected error while obtaining

作者: Joker168 | 来源:发表于2020-11-24 16:15 被阅读0次

环境Android Studio

问题:Unexpected error while obtaining screenshot from device: EOF

提示框:Unexpected error while obtaining screenshot from device: EOF

解决方案

排查一下是否APP限制截屏,搜索下面禁止截屏代码

getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE, WindowManager.LayoutParams.FLAG_SECURE);

添加判断在debug模式取消此限制

if (!BuildConfig.DEBUG) {
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE, WindowManager.LayoutParams.FLAG_SECURE);
}

相关文章

网友评论

      本文标题:Unexpected error while obtaining

      本文链接:https://www.haomeiwen.com/subject/qqaiiktx.html