is Front Camera Intent - Android android.hardware

Android examples for android.hardware:Front Camera

Description

is Front Camera Intent

Demo Code

public class Main {

  private static boolean isFrontCameraIntent(int intentCameraId) {
    return (intentCameraId == android.hardware.Camera.CameraInfo.CAMERA_FACING_FRONT);
  }//from  w w w  .  j  ava2s . com

}

Related Tutorials