Android Image Capture: Custom API and System Intent Approaches
Android offers two primary approaches for capturing images: delegating to a system camera application via an implicit Intent, or directly controlling the hardware using the Camera API. Deleagting to the system camera application involves constructing an Intent with the ACTION_IMAGE_CAPTURE action. T...