设置闪光灯模式camera.parameters android 1.5
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用以下代码在旧版本的 API 中设置闪光灯:
我只是猜测要发送到 .set 方法的值,但我只是对其进行了测试,这会打开闪光灯。
You can use the following code to set the flash in older versions of the API:
I just guessed on the values to send to the .set method, but I just tested it and this turns on the flash.
抱歉,1.5 中没有相应的 API。设备制造商不受公共 SDK 的限制,因此可以访问第三方开发人员无法访问的功能。
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.