Top "Android-camera" questions

The Android framework includes support for various cameras and camera features available on devices, allowing you to capture pictures and videos in your applications.

Take photo from camera in fragment

In my Fragment I try to take picture from my camera but the onActivityResult of my Fragment is not called. …

android android-fragments android-camera
How to capture an image and store it with the native Android Camera

I am having a problem capturing an image and storing it from the native camera app. Here is a sample …

android camera android-intent android-camera android-camera-intent
java.lang.RuntimeException: takePicture failed

when i do continuous click on Capture button (without any break), getting Runtime Exception how can i resolve this issue ? …

java android android-camera runtimeexception
Get the file extension from images picked from gallery or camera, as string

I want to get as string the image extension (for example "jpg", "png", "bmp" ecc.) of the images loaded from …

android android-camera android-gallery
Android Camera AutoFocus on Demand

The built in Camcorder App (like the one on the HTC EVO) seems to call camera.autoFocus() only when the …

android android-camera
Get Path of image from ACTION_IMAGE_CAPTURE Intent

Hi I am using ACTION_IMAGE_CAPTURE for capturing image using Intent as follows: Intent cameraIntent = new Intent(MediaStore.ACTION_…

android camera android-camera android-camera-intent
Camera display / preview in full screen does not maintain aspect ratio - image is skewed, stretched in order to fit on the screen

I have developed a small application for displaying camera preview in full screen. I'm using Camera API for this. This …

android android-camera
What's the correct way to implement Tap To Focus for camera?

I'm working on an app which has a custom camera screen, for which I'm supposed to implement tap to focus, …

android android-camera
How to change color of Camera LED / Flashlight in Android

I'm trying to change color of Camera LED / Flashlight in Android. is their any way to achieve this ? I know …

android android-camera camera-flash
Convert bitmap array to YUV (YCbCr NV21)

How to convert Bitmap returned by BitmapFactory.decodeFile() to YUV format (simillar to what camera's onPreviewFrame() returns in byte array)?

android image-processing android-camera yuv android-image