Tagged Questions
0
votes
1answer
150 views
Android Camera Preview Code not working with Nexus7 -surfaceView error
I've created a camera app for android with the android camera code tutorial http://developer.android.com/guide/topics/media/camera.html#custom-camera. It works for the XperiaZ - LgoptimusBlack- ...
0
votes
0answers
53 views
Camera preview size and preview surface limitations (pre-Gingerbread)
I have been working on a Camera Activity and it works great in anything Gingerbread and above.
I did discover that on an LG Optimus V running Android 2.2.2, that if the preview size I set (selected ...
0
votes
0answers
59 views
Android -camera preview not working if started on click event
I want to build an Android app that displays the preview of the camera in a SurfaceView. It works fine when I execute all of the code in the oncreate method. Here is my code:
preview = ...
0
votes
1answer
305 views
Width and height passed in surfaceChanged() not supported by setParameters()?
I am having a RuntimeException error when calling Camera.setParameters() from the method surfaceChanged(). I saw other posts about the same issue, but didn't find a definite solution:
problem with ...
0
votes
1answer
166 views
Android Camera distorted image
i have a big problem with the camera API in Android. I want to start the preview in the camera in a SurfaceView. That works. But the preview image is distordet. Why does it happens and what is the ...
2
votes
1answer
342 views
Android - Distorted Camera Preview
I am currently writing an android app which runs displays a circle drawable on the preview frame, runs edge detection and then takes a photo once the user lines up a coin perfectly in the circle.
For ...
0
votes
1answer
513 views
Android: camera's startPreview method not working after stopPreview
In my application i have an image button that basically switches on and off the flash LED. The code is running fine for the first time i.e. On first Click it Switches On the LED and on the Second ...
1
vote
1answer
319 views
Android Camera Preview not working in virtual phone
I made a surfaceview that should display the camera preview. However, When I open it with my virtual android phone, I get a checkered black and white background and a large moving green box instead of ...
1
vote
1answer
2k views
Invisible SurfaceView for Camera Preview
I need to get camera preview data only, but not visible preview.
Since I'm doing all this in a service, I had to create a dummy SurfaceView, which works very well.
I've used the code from this ...
1
vote
1answer
704 views
Android (Camera) - How to syncronize stopPreview() with onPictureTaken()?
I have an app in which the client uses the camera to take a picture. The preview of the image is being shown in the tablet using a SurfaceView, before the person hits my "click" button. When the ...
6
votes
2answers
398 views
Android: onPreviewFrame never called without SurfaceView
On some devices, onPreviewFrame is not called if no SurfaceView was set to display the camera preview.
However, I handle the camera in a service, so I can't set a SurfaceView but I don't want to have ...
1
vote
1answer
191 views
Android Camera - Can we take a part of an image from the full screen
I want to take an particular part of an image from the image preview. Is it possible, if so how to do that?
for ex,
I just want to show some limit to the user, so they can take partial part of an ...
4
votes
1answer
1k views
How does android handle differences between preview size/ratio and actual SufaceView size?
I'm writing a small android app where a user can place an image inside the live preview of the camera and take a picture of this. The app will then combine the two images appropriately -- All of this ...
1
vote
1answer
2k views
SurfaceView with camera preview is not destroyed
I have a Tab Activity with 2 tabs (activities). Each tab has a 3d Open GL scene drawn on top of a SurfaceView with camera preview.
Yet, depending on device orientation, tabs are being switched.
The ...
4
votes
0answers
317 views
Reopening camera after intent chooser is canceled
I have created a custom camera preview view CameraView which extends SurfaceView, and it also implements SurfaceHolder.Callback interface. The view operates with the camera. When you open the view it ...
0
votes
1answer
2k views
surfaceCreated() Never Called
I've seen similar problems to the one I'm having, but I still can't find a solution. I'm very new to Android development, so I'm having trouble tracking down my problem. Anyways, I'm trying to create ...
0
votes
1answer
330 views
Camera preview and AR items are not shown when navigating from another activity
I'm trying to develop an AR application for training purposes.
There is a main activity that contains a FrameLayout with two views: the camera preview (a SurfaceView implementing the ...
0
votes
1answer
327 views
Keep camera captured by an activity after picture taken
It is necessary for my application to keep the camera captured until released manually by an Activity (I realize this is bad practice, as no other applications will be able to use the camera). I used ...
0
votes
1answer
608 views
Draw sth. like rectangles inside a CameraPreview (SurfaceView)
How can I draw for example a rectangle inside a CameraPreview (SurfaceView)?
In setPreviewCallback I've implement the invalidate method which should call the onDraw method. But nothing happened.
Can ...
0
votes
2answers
2k views
subclassing SurfaceView and overriding onDraw() to change SurfaceView parameters to generate preview of desired size
I have subclassed the SurfaceView and instantiating it in onCreate of the Activity. The preview is generated but the control never enters onDraw() which is overriden in the subclass of SurfaceView. ...