Android相机闪光控制

时间:2010-11-28 00:07:06

标签: android android-camera

  

可能重复:
  How Turn on only Camera flash light programmatically in android?

好吧,伙计们,我一直在寻找,我似乎无法在任何地方找到这个,我想让我的相机应用程序访问闪存灯泡或任何你想要称呼它们,如果有人知道并希望分享,将不胜感激。或者,如果有人能指出我正确的方向,这将是伟大的。

1 个答案:

答案 0 :(得分:2)

我会抓住这个......

来自http://developer.android.com/reference/android/hardware/Camera.html

您需要授予使用相机的权限使用<uses-feature>用于您要使用的相机功能:

  <uses-permission android:name="android.permission.CAMERA" />
  <uses-feature android:name="android.hardware.camera" />
  <uses-feature android:name="android.hardware.camera.autofocus" />

支持的功能在这里 http://developer.android.com/guide/topics/manifest/uses-feature-element.html

和你想要的相机是

android.hardware.camera
android.hardware.camera.autofocus
android.hardware.camera.flash