Android :: Camera Application Not Working

Mar 13, 2009

How to make camera work for the android file system. When am I clicking camera application button, only square blocks are coming in the LCD screen.

Android :: Camera Application Not Working


HTC Hero :: Camera Not Working - Message The Application Camera Process Com.android.camera Has Stopped Unexpectedly Please Try Again

Dec 6, 2009

My camera stopped working. When I click my camera application I get the message "The application camera (process com.android.camera) has stopped unexpectedly. Please try again". It's just a blank screen?

View 3 Replies View Related

Android :: Camera Application Not Working When Tested On Phone

Aug 18, 2010

Use adb logcat, DDMS, or the DDMS perspective in Eclipse to examine the Java stack trace associated with your error.

[Quote]

View 11 Replies View Related

Android :: Camera Preview Not Working On G2

Oct 20, 2010

I'm trying to get the camera preview running on my G2.

This is the code I'm testing with, which was taken from the sample code. It is using supplemental code supplied by Wu-Cheng, but its still throwing an error.

CODE:......................

View 14 Replies View Related

Android :: Camera Preview Is Working Properly

Feb 24, 2010

In my Application the camera preview is working properly in both in portrait and in landscape mode. No crashes are occurring, but the users are complaining that the crashes are occurring when they are using the same.

View 1 Replies View Related

Android :: Camera Preview Zoom Not Working

Sep 7, 2010

I've a problem with Camera Preview Zoom. The methods present in Android 2.2, setZoom() is not working to zoom the preview. Is there any another way to do the Zoom in android? I am using the code present in the Android API Demos. Is their any body who has worked on implementing ZoomIn & ZoomOut and got succeed??

View 4 Replies View Related

Android :: Working In Portrait Mode With Camera Preview?

Jun 27, 2009

When do you expect it to get fixed? I am a developer working on http://layar.eu and I had to go through lot of trouble to get the app working in portrait mode with camera preview, using a LOT of rotations. I have managed to get everything rotated to portrait except for the on screen inputmethod which still shows up in landscape. Do you have any suggestions for rotating that?

View 9 Replies View Related

HTC EVO 4G :: Camera Not Working

Aug 14, 2010

Worked fine this morning...now when I go to take one its extremely blurry. U can barely even see my eyes. I tried cleaning the glass...I even pulled the battery. Any suggestions?

View 4 Replies View Related

HTC EVO 4G :: Camera Flash Not Working

Aug 27, 2010

My Flash on the camera has stopped working all of a sudden. I checked the camcorder and the light (flash on) didn't work. I tapped the back of the phone near the flash. It worked. I went back to camera and turned on flash, it worked. So by tapping something I jigged something around in there and the flash was working.

View 1 Replies View Related

HTC EVO 4G :: Camera - Video Not Working

Jun 4, 2010

When I click on the camera or video Icon. It goes to load it to where you see the black screen with the white camera and then quickly goes back to the home screen.

View 8 Replies View Related

Android :: Any Application To Disable Camera

Dec 30, 2008

Does anyone know of any apps that can disable the camera? My work does not allow camera phones.

View 8 Replies View Related

Android :: How To Call Camera From Own Application?

Jun 23, 2009

I want to call camera application from my own application, take video. Then I want to get the video back and return to my application. How Can I do it?

View 3 Replies View Related

Android :: Camera Application 1.5 On Emulator Do Nothing

May 22, 2009

Strange behaviour with emulator running with Cupcake. When emulator is launched (via ADT), a SD card is mounted correctly, and I click on Camera, I have a black screen and nothing happens, I got the famous error with Wait or Force close wait, wait, wait nothing happens. I create with AVD the target 3. I'm on Windows XP SP2.

View 9 Replies View Related

Android :: How To Activate Camera From My Application?

Aug 19, 2009

How do I pass an Intent from my application to the Camera application to bring it to the foreground?

View 4 Replies View Related

Android :: How To Use Camera Application Without SD Card?

Feb 5, 2009

When I was using the camera application, the ERROR: Please insert SD card before using camera jumped out because the driver of sd card haven't been porting properly. Is there anyway to use android camera application without sd card?

View 2 Replies View Related

Android :: Using Camera To Take Pictures From My Application

Jan 7, 2010

I've been trying to write an application that uses the Camera App to take a picture. So far, the only thing I've been able to get back successfully is a tiny bitmap picture. I've found several other posts related to this topic that have code that is reported to work, but it does not work for me. I'm hoping someone can steer me in the right direction. Below is the code I am using currently, but it causes the application to blow up.

private void takePicture(final int x, final int y, String description) {
// create a file on the SD card
File file = new File(Environment.getExternalStorageDirectory(),
"tmp_" + String.valueOf(System.currentTimeMillis()) + ".jpg");
// Create the URI that tells the camera where to put the picture.
mOutputFileUri = Uri.fromFile(file);
statusLine.setText("URI => " + mOutputFileUri);
mIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE)
.putExtra(MediaStore.EXTRA_OUTPUT, mOutputFileUri)
.putExtra(PIC_X, x) // x coordinate of square
.putExtra(PIC_Y, y) // y coordinate of square
.putExtra(PIC_DESCRIP,description)
.putExtra("return-data", true) ;
startActivityForResult(mIntent, PIC_FROM_CAMERA);
}

Ultimately, I want to be able to get the picture back and do two things with it: create a 64x64 icon that is displayed by the Android application, and upload the picture to a web application. I'm running this on the emulator using Android 2.0

View 3 Replies View Related

Android :: Compile Camera Application For SDK 1.6

Aug 18, 2010

I am trying to compile and run the Android Camera for sdk 1.6 (also called API level 4 or Donut release). While there is no minSdkVersion in the AndroidManifest, it clearly does not run on a donut device. In fact, if compiled with sdk 2.2 the camera will crash with a NoSuchMethodError execption on an avd or a G1 with sdk 1.6. I tried also checking out the [donut-release] tag, but, strangely, it won't even compile giving many errors like:

[javac] /home/mrucci/camtest2/src/com/android/camera/ImageManager.java:41: cannot find symbol
[javac] symbol : class DrmStore
[javac] location: package android.provider
[javac] import android.provider.DrmStore;
[javac] ^
[javac] /home/mrucci/camtest2/src/com/android/camera/Util.java:32: cannot find symbol
[javac] symbol : class MediaMetadataRetriever
[javac] location: package android.media
[javac] import android.media.MediaMetadataRetriever;
[javac] ^
[javac] /home/mrucci/camtest2/src/com/android/camera/MenuHelper.java:29: cannot find symbol
[javac] symbol : class ExifInterface
[javac] location: package android.media
[javac] import android.media.ExifInterface;
...
[javac] ^
[javac] /home/mrucci/camtest2/src/com/android/camera/ActionMenuButton.java:81: cannot find symbol
[javac] symbol : variable mScrollX
[javac] location: class com.android.camera.ActionMenuButton
[javac] mScrollX + mRight - mLeft),
[javac] ^
[javac] /home/mrucci/camtest2/src/com/android/camera/ActionMenuButton.java:81: cannot find symbol
[javac] symbol : variable mRight
[javac] location: class com.android.camera.ActionMenuButton
[javac] mScrollX + mRight - mLeft),

In particular, I really do not understand why ExifInterface is used in the "donut" tag when it has been introduced since API level 5.

View 1 Replies View Related

Android :: Camera Zoom FX Application?

Oct 19, 2009

I've been using FXCamera for a few weeks now it takes great pictures on my phone, with cool effects like fisheye and the warholizer. FxCamera. Just noticed that android slide has released a version of their Camera ZOOM FX application which has 40 photo FX, geotagging and obviously zoom which I can't do at the moment in FXCamera. Camera ZOOM FX. Just wondering if anyone had a chance to look at either of these apps and which they think is best, because I've been hoping for some new effects for a while and the android slide app sounds worth a look.

View 47 Replies View Related

HTC Desire :: Camera Flash Not Working

Jul 8, 2010

Bought a HTC Desire and just cannot get its camera flash working. Obviously having hard time with people at the shop ("have you tried taking these pictures at night, maybe it understands that it is still daytime even if you tried it in bathroom"). My dumb brain would suggest that manual - flash always on (unless that 5% battery limit is not hit), automatic - depends on sensor income, off - no flash. Really hard to search for stuff like that in forums as usually "flash not working" refers to Adobe Flash.

View 1 Replies View Related

HTC Desire :: Camera Stop Working

Sep 5, 2010

Has anyone got this problem like me? yesterday it happened to me for the 2nd time, I just click the camera app and out of nowhere I got a black screen, like camera freezes or something. So first time what I did was make a factory reset and everything was back to normal,and that was beforo Froyo, now when I am running Froyo, I wonder when I make a factory reset does it turns me all the way back to the stock desire, without new software version and Froyo update? I have bought Desire on contract so I have everything official, no unbranded or rooted phone.

View 3 Replies View Related

HTC EVO 4G :: Phone's Camera / Camcorder Not Working

Jul 3, 2010

I'm a little disappointed with the Evo's camera and camcorder. It's kind of fuzzy and the sound is pretty bad. Is this a hardware issue or a software issue? Is there a hack you can do to make it better? I heard somewhere its a compression and fps issue. Please don't give me answers like "the Evo's quality is great" or "get a real camera".

View 6 Replies View Related

HTC Incredible :: Camera Not Working - SD Error

Aug 26, 2010

I have a rooted phone with froyo.

Just got the phone today I was putting music on my phone from doubleTwist everything was going fine.
Then i put pictures / videos on my phone and i started getting an SD error and my camera stopped working.

So i reformatted the SD card and the card started to read fine but the camera is still not working

The camera / video looks like its just flashing red & white no picture at all.
(I tried google goggles as well and it looks the same)

Camera was working FINE before SD problems started

Tried doing a factory reset too

View 8 Replies View Related

Motorola Droid X :: Camera Is Not Working

Jul 15, 2010

I was really excited to be one of the 25 lucky ones to get a droid x today, but my camera doesn't seem to be working. At first it worked fine, just seemed a bit laggy, then allof a sudden the phone would restart wheni would open the camera app. Now the camera app just shows a blackscreen. I have reset the phone and restarted several times with no change.

View 17 Replies View Related

HTC Eris :: Froyo WITH Working Camera

Aug 9, 2010

While I know you can use camera magic for your camera needs with a froyo rom..figured I'd share the good news. There is a CELB 1.9 rom (aka erislightning bolt froyo) that has WORKING cam...the gallery still goes funky when you try to view sideways but the cam DOES indeed have a working preview!
[ROM] CELB Froyo 1.9(5MP Camera with Preview, Apps2sd,MMS,Market,Wifi, )

View 1 Replies View Related

HTC Incredible :: Camera Not Working On Rooted 2.2

Aug 28, 2010

After many frustrations i just had to comment on the updates out there.NOT all the froyo 2.2 updates are effective. after loading one of the most popular ones, everything went right until it booted up.I had no camera, no video, and my SD card was constantly looking for errors!after searching extensively, I figured what the heck, and seen a post for 2.2 WITH CAMERA that works advertised. I installed over the existing one, and when it rebooted ALL was well with my rooted 2.2 incredible.

Couple of things I do agree on..Make sure you have ASTRO loaded, and ROM Manager. Make no mistake I am not Technically Brilliant but it is easy with these programs. The file that worked flawlessly and got my camera back was ...

20100727_stock_froyo_signed....Look for it....it works!..this all started when i kept trying to get Wireless Tether to work.I have tried Kernels (which screwed up froyo) had to redo it again...also tried every version out there..so for the time being until someone gets it right..I am using PDANET which works great! even though you need a usb hookup...

Again, updating is easy with the right files.
1-update radio. EASY (If you have to.DO NOT update radio more than once)!
2-UNREVOKED- EASY
3-ADD above froyo 2.2 EASY...

View 1 Replies View Related

HTC Desire :: Camera And Camcorder Not Working

Aug 1, 2010

When launching the camera or camcorder the icon for either the camera or camcorder appears in the middle of the screen for a fraction of a second then the app closes. sd card is mounted and i can read existing pictures and videos off it.i unmounted and remounted the card. issue remains.

View 8 Replies View Related

HTC EVO 4G :: Camera Camcorder And Youtube Not Working

Aug 4, 2010

I updated to froyo 2.2 yesterday and ever since the camera, camcorder and YouTube apps flash open for a second and immediately close. I called Sprint's tech support and the lady said that Sprint did not work the bugs out of it for their phones yet, and that I have to go to the store and have them completely wipe it. This is unacceptable because I literally have put thousands of things on my evo. Is there anything else that can be done?

View 5 Replies View Related

General :: Camera Not Working In Infuse

Nov 7, 2012

I have Infuse I997 with Gingerbread UCLB3. I think my camera got wet during a rain and stopped working. When I open camera (or flashlight) it opens up the application but the screen is black.

It also does not want to close and eventually shows a message that application stopped working and needs to close.

View 7 Replies View Related

General :: After Flashing Rom - Camera Not Working

Aug 7, 2013

I just flashed my rom on my prestigio 4020 . Rom is running well, but camera isn't working.I got stock rom files.How i can fix that camera problem?!? On stock rom camera worked well.Can i transfer camera file (etc.) on this my new rom?

View 9 Replies View Related

General :: GT-I8150 - Camera Not Working?

Jul 24, 2012

Is there any way to bypass the fact that the camera is not working on the ICS from for galaxy W? Need drivers for it that can be included in the rom? GT-I8150

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved