is Back Camera Intent - Android android.hardware

Android examples for android.hardware:Back Camera

Description

is Back Camera Intent

Demo Code

public class Main {

  private static boolean isBackCameraIntent(int intentCameraId) {
    return (intentCameraId == android.hardware.Camera.CameraInfo.CAMERA_FACING_BACK);
  }//from  ww w.j  a v  a2s  . c  o  m

}

Related Tutorials