Android相机:如何在指定时间自动捕获图像

发布于 2024-12-04 19:24:12 字数 27 浏览 0 评论 0原文

如何在相机打开时在指定时间自动捕获图像。

How to capture an image automatically by specified time when camera is open.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鸢与 2024-12-11 19:24:12

我不知道是否可以在没有用户交互的情况下捕获图像。但可以肯定的是,您可以在指定的时间触发意图来显示相机,

您只需要一个计时器,然后如果时间等于您想要的时间,那么

startActivityForResult(new Intent(MediaStore.ACTION_IMAGE_CAPTURE), TAKE_PICTURE);

我认为在没有用户交互的情况下不可能只拍照,因为这将是一个安全问题。也许对于像相机这样的事情来说并没有那么糟糕,但是如果您可以以编程方式拨打电话或发送短信,那绝对是糟糕的......对于这样的事情,您需要用户交互来确认。你所能做的就是激发一个意图

I do not know if it possible to capture image without user interaction. But for sure you can fire intent on specified time for showing the camera

you just need a timer and then if the time is equal to the time you wanted than

startActivityForResult(new Intent(MediaStore.ACTION_IMAGE_CAPTURE), TAKE_PICTURE);

I think that is not possible to just take photo without user interaction cause it would be a security issue. Maybe for the things like camera is not that bad, but it is definitively bad if you can programmatically make a call or send sms... For things like this you have user interaction to confirm. All you can do is fire a intent

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文