Android 截屏后显示文件大小为 0 KB?
我必须截取屏幕截图,以便稍后保存在 SD 卡中。我已经浏览了此链接下面给出的代码。
问题是它会创建一个零 (0) kb 文件我的 SD 卡。可能是什么问题?什么是id.layoutroot
?
I had to take a screenshot that can be later saved in SD card. I have gone through the code given at below this link.
Android take screenshot via code
problem is that it creates a zero(0) kb file in my Sd card. what could be the problem? and what is id.layoutroot
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
layoutroot 很可能是赋予根布局的 id,如
尝试使用要捕获的视图的 id 并检查是否启用了绘图缓存。
layoutroot is most likely the id given to the root layout as in
Try to use the id of the view you want to capture and check if the drawing cache is enabled.