82

在我的应用程序中,如果设备有相机,我想使用相机。有没有没有摄像头的运行android的设备?通过在我的清单中包含以下内容:

<uses-feature android:name="android.hardware.camera" android:required="false"/>

那么它基本上是在说“如果存在相机,我将使用相机,但不需要相机来运行应用程序”。

在尝试使用 Camera 类之前,如何检查设备上是否存在摄像头?

4

15 回答 15

226

这就是我正在使用的

import android.content.pm.PackageManager;

PackageManager pm = context.getPackageManager();

if (pm.hasSystemFeature(PackageManager.FEATURE_CAMERA)) {
}

各种其他有趣的东西也可以测试 - 指南针,位置可用,是否有前置摄像头:http: //developer.android.com/reference/android/content/pm/PackageManager.html

于 2011-03-10T21:31:26.453 回答
43

要了解您的设备上有多少个摄像头可用,您可以致电:

import android.hardware.Camera;

int numCameras = Camera.getNumberOfCameras();
if (numCameras > 0) {
  hasCamera = true;
}

Camera.getNumberOfCameras() 是静态的,因此它不需要实际连接到相机。这从 API 9 开始有效。

编辑:

使用较新的 camera2 API,您还可以调用CameraManager.getCameraIdList(),它会提供所有有效相机 ID 的列表,而不仅仅是计数。

于 2012-05-15T01:26:01.017 回答
12

您应该使用它在您的设备中查找相机

public static boolean isCameraAvailable(Context context) {
    return context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_CAMERA_ANY);
}
于 2015-01-17T11:37:13.057 回答
6

Camera.getNumberOfCameras() 已弃用。您可以使用:

@TargetApi(Build.VERSION_CODES.LOLLIPOP)
public int getNumberOfCameras() {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        try {
            return ((CameraManager) getSystemService(Context.CAMERA_SERVICE)).getCameraIdList().length;
        } catch (CameraAccessException e) {
            Log.e("", "", e);
        }
    }
    return Camera.getNumberOfCameras();
}
于 2015-10-06T14:47:25.353 回答
5

使用PackageManager.hasSystemFeature()方法检查 Camera :

private boolean checkCameraHardware(Context context) {
    if (context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_CAMERA)){
        // this device has a camera
        return true;
    } else {
        // no camera on this device
        return false;
    }
}

来源:https ://developer.android.com/guide/topics/media/camera.html#custom-camera

于 2016-06-21T14:33:18.583 回答
3

通过以下方式,我们可以检查设备是否有摄像头。

/** Check if this device has a camera */
    public static boolean checkCameraHardware(Context context) {
        if (context.getPackageManager().hasSystemFeature(
                PackageManager.FEATURE_CAMERA)) 
        {
            return true;
        }
        else if(context.getPackageManager().hasSystemFeature(
                PackageManager.FEATURE_CAMERA_FRONT))
        {
            return true;
        }
        else {
            return false;
        }
    }
于 2016-04-13T07:43:25.463 回答
2

尝试这个 :

/** Check if this device has a camera */
private boolean checkCameraHardware(Context context) {
    if (context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_CAMERA)){
        // this device has a camera
        return true;
    } else {
        // no camera on this device
        return false;
    }
}

来自:http: //developer.android.com/guide/topics/media/camera.html

于 2015-12-04T00:31:34.503 回答
2

根据 Android 文档:

/** Check if this device has a camera */
private boolean checkCameraHardware(Context context) {
    if (context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_CAMERA)){
        // this device has a camera
        return true;
    } else {
        // no camera on this device
        return false;
    }
}

请参阅有关相机 API 的更多信息:
https ://developer.android.com/guide/topics/media/camera.html#detect-camera

于 2019-09-20T05:52:16.037 回答
1

如果您使用的是 Android 2.3,有一些 API 可以检查您的摄像头状态,例如摄像头数量(前后)

于 2012-02-28T12:11:48.507 回答
1

尝试这个

对于前置摄像头

    Context context = this;
    PackageManager packageManager = context.getPackageManager();
    if (packageManager.hasSystemFeature(PackageManager.FEATURE_CAMERA_FRONT)) {

        Utils.makeAlertDialog(context, "Has Front Camera ?", "YES");

    } else {

        Utils.makeAlertDialog(context, "Has Front Camera ?", "NO");
          }

用于后置摄像头

    Context context = this;
    PackageManager packageManager = context.getPackageManager();
    if (packageManager.hasSystemFeature(PackageManager.FEATURE_CAMERA)) {

        Utils.makeAlertDialog(context, "Has back Camera ?", "YES");

    } else {

        Utils.makeAlertDialog(context, "Has back Camera ?", "NO");
          }
于 2014-10-21T05:19:02.983 回答
0

一线解决方案:

public static boolean hasCamera(Context context) {
    return context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_CAMERA);
}

将此方法放在您的 Utils.java 项目类中。

于 2019-03-27T17:07:54.723 回答
0

根据文档,您必须使用包管理器检查设备上的相机是否可用

在 Java 中:

final boolean isCameraAvailable = getPackageManager().hasSystemFeature(FEATURE_CAMERA);

在科特林:

val isCameraAvailable = packageManager.hasSystemFeature(FEATURE_CAMERA)
于 2018-10-20T08:42:00.377 回答
0

最好检查设备上的任何摄像头,因为它也可能是外部摄像头

packageManager.hasSystemFeature(FEATURE_CAMERA_ANY)

文档:

getSystemAvailableFeatures 和 hasSystemFeature 的功能:设备至少有一个指向某个方向的摄像头,或者可以支持连接到它的外部摄像头。

于 2021-11-15T20:13:16.610 回答
0

我在 android 电视盒中发现你可以多次插入和播放 USB 摄像头。在某个时间点,摄像头服务开始说它在系统中检测到一个摄像头,而没有摄像头连接到系统。当您多次插入/拔出相机时会发生这种情况。为了解决这个问题,我发现这个解决方案有效:

//under oncreate:
//cameraManager = ((CameraManager) getSystemService(Context.CAMERA_SERVICE)); 

public int getNumberOfCameras() {
        int count_ = 0;
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
            try {
                count_ = cameraManager.getCameraIdList().length;

                if(count_==1)
                {
                    try {
                        cameraManager.getCameraCharacteristics(cameraManager.getCameraIdList()[0]);
                    }catch (Exception e)
                    {
                        count_ = 0;
                    }
                }

            } catch (Exception e) {
               //e.printStackTrace();
            }
        }
        else {
            count_ = Camera.getNumberOfCameras();
        }

        return count_;
    }
于 2018-11-23T05:39:09.533 回答
-45

我没有尝试过,但是:

private android.hardware.Camera mCameraDevice;

try {
  mCameraDevice = android.hardware.Camera.open();
} catch (RuntimeException e) {
  Log.e(TAG, "fail to connect Camera", e);
  // Throw exception
}

可能是你需要的。

于 2009-12-22T12:17:48.500 回答