设置闪光灯模式camera.parameters android 1.5

发布于 2024-09-26 07:05:03 字数 233 浏览 5 评论 0原文

我正在尝试使用 1.5 API 在 Android 应用程序中使用相机。我希望相机在拍摄每张照片时都闪烁。然而,当我查看camera.parameters的API时,setFlashMode()方法仅支持2.0及更高版本。然而,我的 Cliq XT 运行 1.5,有一个可以在菜单中设置的闪存 - 我认为这意味着有一种方法可以为 1.5 API 执行此操作,尽管我无法找到它。

有谁知道如何使用 1.5 API 设置 flash 模式?

I'm trying to use the camera in an Android app using the 1.5 API. I want the camera to flash for every picture. However, when I looked at the API for camera.parameters, the setFlashMode() method is only supported for 2.0 and higher. Yet my Cliq XT, which runs 1.5, has a flash that I can set in the menu - I take this to mean there is a way to do this for the 1.5 API, though I was unable to find it.

Does anyone know how to set the flash mode using the 1.5 API?

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

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

发布评论

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

评论(2

何以心动 2024-10-03 07:05:03

您可以使用以下代码在旧版本的 API 中设置闪光灯:

Parameters params = camera.getParameters();
params.set("flash-mode", "on");
camera.setParameters(params);

我只是猜测要发送到 .set 方法的值,但我只是对其进行了测试,这会打开闪光灯。

You can use the following code to set the flash in older versions of the API:

Parameters params = camera.getParameters();
params.set("flash-mode", "on");
camera.setParameters(params);

I just guessed on the values to send to the .set method, but I just tested it and this turns on the flash.

酒中人 2024-10-03 07:05:03

有人知道如何使用1.5 API设置闪光模式吗?

抱歉,1.5 中没有相应的 API。设备制造商不受公共 SDK 的限制,因此可以访问第三方开发人员无法访问的功能。

Does anyone know how to set the flash mode using the 1.5 API?

There is no API for that in 1.5, sorry. A device manufacturer is not limited by the public SDK and therefore can access capabilities that you, as a third-party developer, cannot.

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