Example usage for android.hardware.camera2 CameraAccessException CAMERA_ERROR

List of usage examples for android.hardware.camera2 CameraAccessException CAMERA_ERROR

Introduction

In this page you can find the example usage for android.hardware.camera2 CameraAccessException CAMERA_ERROR.

Prototype

int CAMERA_ERROR

To view the source code for android.hardware.camera2 CameraAccessException CAMERA_ERROR.

Click Source Link

Document

The camera device is currently in the error state.

Usage

From source file:com.example.android.hdrviewfinder.HdrViewfinderActivity.java

@Override
public String getErrorString(CameraAccessException e) {
    String errorMessage;/*  w ww  .j a  va  2  s  .  c o m*/
    switch (e.getReason()) {
    case CameraAccessException.CAMERA_DISABLED:
        errorMessage = getString(R.string.camera_disabled);
        break;
    case CameraAccessException.CAMERA_DISCONNECTED:
        errorMessage = getString(R.string.camera_disconnected);
        break;
    case CameraAccessException.CAMERA_ERROR:
        errorMessage = getString(R.string.camera_error);
        break;
    default:
        errorMessage = getString(R.string.camera_unknown, e.getReason());
        break;
    }
    return errorMessage;
}