Android Camera Get getCameraInstance()

Here you can find the source of getCameraInstance()

Description

get Camera Instance

Declaration

public static Camera getCameraInstance() 

Method Source Code

//package com.java2s;

import android.hardware.Camera;

public class Main {
    public static Camera getCameraInstance() {
        Camera c = null;/*from   w  w  w  .jav  a  2  s. com*/
        try {
            c = Camera.open(); // attempt to get a Camera instance
        } catch (Exception e) {
            // Camera is not available (in use or does not exist)
        }
        return c; // returns null if camera is unavailable
    }
}

Related

  1. getCamera()
  2. getCameraId()
  3. getCameraId(int facing)
  4. getCameraId(int position)
  5. getCameraInstance()
  6. getCameraInstance()
  7. getDefaultCamera(int position)
  8. getDefaultCamera(int position)