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

learn more… | top users | synonyms

0
votes
0answers
9 views

Manual focus in android 2.3

Is it possible to use something similar to setfocusareas() while developing for API 8 ? I am making a camera app where the user can select the area to focus by touching on screen. Is there any other ...
0
votes
0answers
21 views

RuntimeException: Method called after release() Android

I am developing an app that reads a QR code, sends some information to database and gets ready for next QR code after 5 seconds in on onPostExecute() of AsyncTask. However, sometimes I get this error: ...
0
votes
0answers
12 views

How to add a button to switch between cameras

How can I add a button to camera-control opencv4android example? I have simply added in the main.xml file: <Button android:id="@+id/imgShoot" android:text="Capture" ...
1
vote
3answers
31 views

NullPointerException in setPreviewDisplay(holder)

Pretty new on this android stuff and gets a NullPointException that I can't seem to figure out. I am trying to implement an onResume() method in my CameraActivity and have moved almost all of the ...
2
votes
1answer
25 views

Take picture with camera before starting new activity

I have an activity that will take a picture upon touch of the screen. After taking the picture, I'd like to switch to a different activity. The structure of the code looks like the following: class ...
1
vote
0answers
20 views

Set flash mode in android

I got some example to set flash mode, cant make it work. I using it in a camera swap: final ImageButton button1 = (ImageButton) findViewById(R.id.bt_camera); ...
1
vote
1answer
26 views

Android-Thumbnail showing currect picture but Original showing different Picture

I am using camera API in my app now, I have two issues in the app: I am saving the image to a folder in the sdcard, the problem is after capturing and looking to the folder the thumbnail is showing ...
0
votes
1answer
30 views

Android opening new page after onActivityResult

For a HTML5 - Jquery Mobile Android app I use native code to access the camera. I have succeeded in getting images from the camera and showing them on my local webpage. The problem I'm experiencing is ...
0
votes
0answers
18 views

Wrong orientation of JavaCameraView

I have developed an Android app that, using opencv libraries, opens a video stream and captures frames from it. The problem is that the orientation of the application is portrait, and this allows me ...
2
votes
1answer
24 views

Android Camera takePicture is using Previews small buffer

I am developing a project using OPENCV. I have some process on onCameraFrame. While it shows previews, user can take a photo. But in some devices, I take an error after called takePicture(...) method. ...
0
votes
3answers
30 views

Android Image Not saving to sdcard

After pressing capture Button , image should save in sdcard, it is taking snapshot but not saving the image with that, Then how can I put the capture button wherever I want? I have an overlay in the ...
0
votes
1answer
24 views

how to find dimensions(length,width,height) of area when captured by camera?

I stuck at one point where i want to do this, Wanna Take photo of area i want to find the dimensions of. For example, fridge cavity. With the photo it will display the ...
0
votes
1answer
18 views

How do I create a custom camera layout for Android?

I am working on an android app that will require the camera. I know that I can use the built in camera app to take photos. However, I would like to have a more custom look (probably another UI and ...
1
vote
1answer
30 views

getSupportedPictureSize() returns a value which is not actually supported by Nexus4

I have extended a SurfaceView for displaying the camera feed for a very simple camera application. To find the optimal preview size for each device, I used this sample code which is used in almost all ...
0
votes
0answers
14 views

Android Camera/Picture Orientation Issue

I'm having problems making my camera preview and the picture it ends up taking being consistent. I want the camera and preview working in both portrait and landscape mode. In landscape mode, ...
0
votes
3answers
33 views

Rotate byte array of JPEG after onPictureTaken

Is there a way to rotate byte array without decoding it to Bitmap? Currently in jpeg PictureCallback I just write byte array directly to file. But pictures are rotated. I would like to rotate them ...
0
votes
2answers
27 views

Error while running an Camera application

I am starting to understand andriod app code and run it on my device. However when i run the code and click on button ,device says that unfortunety the camera has stopped.How to resolve this issue. ...
0
votes
0answers
10 views

Why doesn't the video taken from phone play in browser?

From an android application, I take an mp4 video and I send it to an FTP server. Later on, I try to read from the FTP server and display the video in a browser using this : <video width="320" ...
1
vote
1answer
36 views

How to rotate camera screen at any angle in android?

I need to rotate my camera screen at 90, 180, 270, 360 angle in clock wise and anti clockwise for both front and rear camera. I have applied a code block on SurfaceView. Here I am providing the code: ...
0
votes
3answers
30 views

get captured image to other activity

Helo, I have two activities A and B. in activity A I have a google map and a button. The button allow me to take a picture. after taking picture I want it in activity B where I can edit it and give ...
0
votes
0answers
67 views

Samsung Galaxy S4 rear camera slow in burst mode

I created a camera Activity, which provides a burst" mode. This means, the activity takes a new picture as soon as the last one has been taken. The activity is based on the code example provided here: ...
0
votes
1answer
27 views

Custom camera not working on 4.0.4

I test this code in android 2.2 and android 3.2. its working perfect but when i run in android 4.0.4, its not working. when i click on button for take picture, application not responding and going ...
0
votes
0answers
17 views

ListFiles is not getting the folder files correct on first time

I want to get the list of files present in the particular folder. But listfiles returning size 0 at the first time of capturing image from camera. But if i take next image from camera, the size ...
0
votes
0answers
15 views

Take Picture from camera and crop it

I tried to take a picture with the camera and crop it after that. For this is use this code: @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { ...
0
votes
1answer
30 views

Visible Light Communication with Android camera Approach

I have a circle which changes colors according to a data encoding scheme. For example I want to encode the message "Hello" in the color changes of that circle. That means something like a transition ...
0
votes
0answers
17 views

Captured image gets distorted when saved - Android Surfaceholder HTC Desire S

I'm using the Surfaceholder and the camera to capture an image but when I do it on my HTC Desire S the captured image looks like this. This is not what it looks like in the preview-view. It works ...
0
votes
1answer
15 views

Common Image format for all android camera Phones

I am using a customized Camera in my applications. I am trying to set my camera parameter as params.setPictureFormat(ImageFormat.JPEG); params.setJpegQuality(1); With the above code, it works fine ...
1
vote
1answer
22 views

app crashes when flash is turned on

Using the code found at How turn on camera flash light programmatically in Android?, I tried to turn the flashlight on. The device I am using for testing is Galaxy SIII. The following is the code in ...
0
votes
2answers
40 views

Android Front Camera

i'm trying to use front camera using this tutorial http://www.vogella.com/articles/AndroidCamera/article.html but got a problem that is making me mad. 1st of all, if use the code provided by ...
0
votes
0answers
7 views

Show camera on imageview

I'm trying to show the camera on ImageView object. Is this possible? if not, how can I show the camera without open the default app? for now I just open it and capture an image with the camera ...
1
vote
1answer
19 views

Android camera frezes

I have made one project in which I work with android camera API. But on old android phones like (Samsung galaxy S) i have annoying issue. When I try to take photo my application freezes and after few ...
1
vote
1answer
24 views

java.lang.RuntimeException: Unable to resume activity {packagename.classname}:

I am trying to use camera class in my app. I just want to click a picture and set on the imageview and then posting it on some url. Posting on url working fine but sometime problem occurs while ...
0
votes
1answer
14 views

Orientation of Image captured using Camera instance behaves differently for different Android devices

The orientation of the image captured is causing problems across devices in Android. In some devices the orientation of the image captured is not recorded in the EXIF while in other devices it is ...
1
vote
0answers
31 views

How does the Android Lock Screen Camera work

In Android 4.2 new lock screen widget have been introduced. They can be accessed by sliding left or right on the lock screen. One of those widgets is a camera widget — only this camera widget is ...
0
votes
0answers
20 views

Android Intent for Capturing both Images and Videos?

Is there an Intent for starting a camera with options to capture both Pictures and Videos on Android? I've used both MediaStore.ACTION_VIDEO_CAPTURE and MediaStore.ACTION_IMAGE_CAPTURE to capture ...
0
votes
1answer
22 views

Android: MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA

Can any ony give me guidelines on how to find the directory my Android device stores its images takem from a camera; In the following code snippet, I intend to get a list of files in prior to ...
0
votes
0answers
116 views

How to use Xperia Z camera in Burst Mode?

I'm trying to to trigger the camera on an Xperia Z device in burst mode programatically but with little success so far. Here's what I've tried so far: Installed the Sony Add-on SDK for Android but ...
1
vote
0answers
47 views

Android camera-preview on surfaceview

I developed an app which uses the camera on my android-phone. If I click a button to start the preview it shows the preview on a surface-view and then it takes every X seconds a picture. My problem ...
0
votes
0answers
42 views

How to improve using Android camera with some image processing

I'm building an AR app on android with some image processing, the way I handle the camera is that I create a fake surface: SurfaceView view = new SurfaceView(context); ...
0
votes
1answer
38 views

What is the most efficient way to work with the Android camera?

I'm working on an AR app which does heavy image processing using NDK. The result is 10 frames at best. I believe that part of the problem is the way I work with the camera in Android. I wonder what ...
3
votes
1answer
87 views

Android take photo on unlock secretly

I am trying to build an app which captures a photo everytime the phone is unlocked. The user should not see that a photo has been taken. So it should basically behave like an anti-theft app. I have ...
1
vote
1answer
66 views

Zxing Front Camera Mirror Image issue

I am trying to use the front camera for the zxing barcode scanner on Android Tablet -- to make it work,i did the below changes: 1) GingerbreadOpenCameraInterface.java // if (cameraInfo.facing == ...
0
votes
1answer
47 views

Android camera intent kills my activity

I want to set my profile image using the camera, but my Activity is killed sometimes when startActivityForResult with ACTION_IMAGE_CAPTURE. camera run successfully, i can take picture. but when i ...
0
votes
1answer
49 views

Picture does not save to gallary after taking photo from the my camera application

I have to take a photo from camera application and send it to a mail. My problem is when i take the photo from my camera application it does not save it to gallery .And when i use the function ...
0
votes
1answer
29 views

Android Custom Camera Zoom Not Working

I have seen several other questions on this subject but none seem to solve my problem. I have a custom camera app that is working fine, everything but the zoom buttons. this is my code using SDK min 8 ...
0
votes
0answers
33 views

zxing camera is not working with Android API 4.0.3?

My application is using Zxing camera, It is working fine but when I try to open this application in device with Android API 4.0.3 then it is crashing automatically from CameraManager.java if (camera ...
0
votes
0answers
29 views

Taking multiple photos using MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA

I am interested to capture the multiple images once the camera is open through an intent MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA. I’ve found the answer to the similar problem (How to take ...
0
votes
1answer
42 views

Using a ViewPager over a CameraPreview

I've been trying to create a Camera Preview that displays a View Pager with several transparent images over the preview. But, I'm getting this error: 05-10 03:31:23.614: E/AndroidRuntime(674): FATAL ...
0
votes
1answer
38 views

SurfaceView crashes on orientation change

I am using a SurfaceView to draw on top of the camera preview, adapting code from this tutorial. The app works at first then crashes on orientation change, sometimes on the first change, sometimes ...
0
votes
1answer
29 views

Android hardware camera fire intent after onPictureTaken

I have implemented my own camera preview layout and functionality. Anyway, when I press the button to take a picture it calls the onPictureTaken method, but the Intent is not fired. The Intent is ...

1 2 3 4 5 32