1
vote
0answers
38 views

Android camera - how to prevent captured image from showing?

I am developing an app that shows a camera preview, takes a picture, and then shows the picture to the user. Since the window size, preview size and camera capture size do not match up, the app crops ...
0
votes
1answer
30 views

setOneShotPreviewCallback not hitting onPreviewFrame() in callback

I'm creating a video capture activity for an app I'm making, and I want to capture a preview frame as well to use as a playback button. I've set the SurfaceView up in onCreate(...) and hooked up the ...
0
votes
0answers
50 views

Android 1080p full screen camera preview?

I am coding an app for android which uses SurfaceView class to realize camera preview, which works well on Nexus Galaxy and Desire HD The surface view layout width/height attribute is match_parent ...
0
votes
0answers
49 views

How to start a preview again after using MediaRecorder?

I have this code, but when i record a segment preview is stopped. How i can get it back? EDIT: theres a code, i would like when i lift my finger to return the camera preview. I tried reinit the camera ...
0
votes
2answers
96 views

Android camera can't preview, can take phot

I'm displaying a camera preview to an user using surface view. Here's my method for starting it: private void pickCam(){ if (Camera.getNumberOfCameras() < 1) return; if ...
0
votes
1answer
79 views

Android Camera App preview issue

I'd like to ask for some advice regarding the following problem. I'm currently working on a camera app for android and i am stuck. I used the official android development site for guidance, and the ...
0
votes
1answer
152 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
2answers
81 views

Preview images in Portrait screen mode issues in Samsung Glaxy NoteII for Android apps

I am having problem with the preview of the captured pictures. I have set up the ImageView to preview the image in the xml file. Once the picture is taken, i get a save or discard preview of the ...
0
votes
0answers
20 views

Camera parameters set on Transformer Pad Infinity

Developing a little camera thing, I've experienced a weird issue. Using standard Camera object (hardware) and standard preview for it (SurfaceView), I set a color effect supported by my hardware, a ...
0
votes
0answers
22 views

Zoom not applied to image in onPreviewFrame

if I set the zoom if ( cameraParameters.isZoomSupported() ) { cameraParameters.setZoom(cameraParameters.getMaxZoom()); } The zoom is correctly applied to the preview surface view but on an ...
0
votes
0answers
54 views

Automatic picture capture and preview android

I am developing an application that takes pictures automatically and send them thanks to websocket but I can't run any preview in the android smartphone. It's either showing a white page in it or ...
1
vote
2answers
97 views

Android layout preview

I am developing a tablet-only app and I put xml files for 10 inch tablets in /res/layout-sw720dp folder. When I preview customized xml in eclipse, I select device as "10.1in WXGA (Tablet) (1280x800: ...
0
votes
1answer
47 views

Is there a way to preview a fragment being used in another view in IntelliJ IDEA 12?

I recently made the switch from Eclipse to IntelliJ IDEA 12. Is there a good way to preview a fragment being used in another xml layout file? In Eclipse there's a way to specify which fragment I'm ...
1
vote
2answers
311 views

Android - camera preview not working

I'm trying to write a camera app for android, but I'm having trouble with getting the preview to work. I tried to follow the steps that android gives here, but it doesn't work, the app keeps crashing. ...
2
votes
0answers
156 views

Android camera preview mapping to final picture

We have been building a custom Android camera Activity where a rectangle is overlayed inside the camera preview and when the photo is captured (at the press of a button), we want to crop the ...
0
votes
1answer
61 views

Is getPreferredPreviewSizeForVideo() a good way go get the right preview size?

I'm building a part of an android app, that displays a camera preview. I'd like to set the correct (best) preview size possible for the current device. To accomplish this, I used the following code: ...
3
votes
1answer
305 views

Nexus 4 Camera preview aspect Ratio always requires 16x9 surfaceview? Why

Device Nexus 4 Android ver: 4.2.2 Hoping someone else has found this and can explain how to resolve it.... Nexus 4 supports the following preview sizes: - W:1280 H:720 Ratio: 1.777777 W:800 H:480 ...
1
vote
1answer
165 views

Android Video Preview and Video Recording

Hi guys i need to record a video for a particular duration which is working fine. But i need to add a 30 seconds of delay before starting the actual video recording but in the mean while i need to ...
0
votes
2answers
125 views

How to show image preview while downloading it on Android?

i want to write an app that displays images from a Cherokee webserver. I do download the images with the following code: @Override protected Bitmap doInBackground(URL... params) { URL ...
-2
votes
1answer
67 views

“Preview” cannot be resolved to a type, imports are defined [closed]

Why is Eclipse telling me that Preview cannot be resolved to a type?? Where is Preview defined? Yes, I have tried ctrl+shift+o import android.app.Activity; import android.content.pm.ActivityInfo; ...
0
votes
1answer
307 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
0answers
54 views

getoptimalsize for portrait forced camera

I have a custom camera that is supposed and forced to do pictures only on portrait orientation. Everything goes ok untill I have to set the preview and the pictures size. I am using this method for ...
0
votes
0answers
52 views

previewcallback still called after release camera

in my code i set a previewcallback, and while debugging i noticed that after i release the camera in onPause, the previewcallback is called again. i Supposed that camera.relase() released all the ...
1
vote
0answers
97 views

camera preview on lockscreen

I want add a take picture function in lockscreen , and I need to open the preview on screen , but it's fail all the time , logcat say the Error is about "setPreviewWindow - Null ANativeWindow passed ...
0
votes
1answer
418 views

onPreviewframe only called once

i am working on a camera app, y need to extract some data of the preview each frame so y tried to do it using onPreviewFrame, the problem is that with my code onPreviewFrame is only called once and ...
0
votes
1answer
167 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 ...
3
votes
0answers
327 views

Android camera surfaceChanged being constantly called

I am developing an app that uses the camera. I have made the preview class like this: public class MyPreview extends SurfaceView implements SurfaceHolder.Callback, Camera.Preview Callback{ ... ...
0
votes
1answer
112 views

custom keyboard keytext shadow remove

i have used the custom keyboard app from the sdk and modified it as per my requirments but i couldn't modify two things remove drop shadow from the key text of every key on the key board. as i did ...
3
votes
1answer
268 views

Image stabilization when i move phone - Android

I developing application for Android OS which helps you to draw with help of camera. App works in way that capture frames from camera trough onPreviewFrame(byte[] data, Camera camera), and from here ...
0
votes
1answer
83 views

Unable to use zoomcontrols in android camrea preview

I am new to android programming. I am developing a simple application called magnifier which will use camera lens to zoom in and out the preview. But I am stuck with my code since zoom in and out are ...
3
votes
0answers
202 views

Android camera preview processing

I know that there are already similar questions, but they don't help me. Currently, I'm playing around with the camera preview and I'd like to apply some custom filters. However, the performance is ...
1
vote
1answer
114 views

Camera in Android - can't get preview to restart? Don't know where pics are stored?

When should a call be made to startPreview on the camera after taking a pic? Used the code in the demo: http://developer.android.com/guide/topics/media/camera.html Works to an extent, but I cannot ...
1
vote
1answer
150 views

Implement Camera API in Android 2.3

I'm working on a camera API. It works perfectly in 4.0 and 4.1 but when I try it on devices with Android 2.3 or less, it crashes in surfacechanged function. I'm using front camera for taking picture. ...
0
votes
0answers
88 views

How to get single preview image?

I am looking for fastest way to get an image, from the three of possible ways -- raw image, post-processed image, and preview -- the last one looks most promising. However, I can get two former ...
1
vote
1answer
180 views

Setting the background of an xml layout to camera in android

I have a project, where i have a xml layout, with buttons and all of that in it, and i need the background to be the camera, so the preview is behind the buttons, how can i do that?
0
votes
1answer
94 views

Previewing a ZIP archive [closed]

I need to find a way to preview an archive and provide browsing functionality: when archive contains a folder I must be able to get inside it and access files. I tried using ZipFile, which contains an ...
1
vote
0answers
420 views

Show custom application image in task manager on ICS or JB

As far as I see on Android 4.0 (or higher) default task manager shows last screenshot from program with program icon no the top left. See image: My question is how to change application's image ...
0
votes
0answers
370 views

OpenGL ES, Draw non-power of 2 camera preview frame

I have to draw camera preview frame that has non POT size. 800x600 for example. If I understand correctly, strategy is as follows: 1) Draw texture of POT size (but size is bigger than size of our ...
0
votes
0answers
93 views

getExposureCompensation called from preview callback always returns 0

I'm trying to determine how bright the scene in front of my camera is, and although the camera apparently supports the exposure compensation parameters, the value I read for getExposureCompensation() ...
2
votes
0answers
227 views

Recording video from a Service

I'm sorry if there's a duplicate, however wasn't able to find a clear answer after some time of searching. Actually, is it still impossible to capture video without a preview? Is it possible to ...
-1
votes
1answer
726 views

Android keyboard key preview background image

DEVELOPING AN ANDROID KEYBOARD: how can I change the background image of the key preview?
0
votes
0answers
477 views

samsung galaxy s3 preview size

I'm recording a piece of video and I set the preview size to be width = 640dp and height = 480dp. This works fine on samsung galaxy s2 tablet, with or without rotation. But on samsung galaxy s3 phone, ...
3
votes
0answers
539 views

Android: Accessing hardware camera preview frame data without drawing them

According to the android camera docs from the Java SDK side, the camera preview frames have to be supplied a (visible and active) surface to be drawn to in order to access the frame data. I have ...
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
2answers
598 views

How to crop image on camera preview “Goggles style” - Android

I'm trying to make a small Android application that reads text from pictures. I've already implemented Tesseract tools for Android and I'm able to recognize text from pictures taken with camera. My ...
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 ...
3
votes
1answer
769 views

Android OCR tesseract: using data from Pixa objects to display bounding boxes

I am currently playing around with OCR on android. Therefore I wrote a small app with a Camera preview and now I am feeding tessearact tools (tess-two) images from my onPreviewFrame method. Now I want ...
0
votes
0answers
174 views

Corrupted Camera Preview on HTC desire HD - ANDROID

I make an application with the use of the camera to perform a preview. Everything works fine except on model "HTC Desire HD". The preview is cut in two part (half center), the up is ok, and the ...

1 2 3