Android :: Camera Application Not Working When Tested On Phone
Aug 18, 2010Use adb logcat, DDMS, or the DDMS perspective in Eclipse to examine the Java stack trace associated with your error.
[Quote]

Use adb logcat, DDMS, or the DDMS perspective in Eclipse to examine the Java stack trace associated with your error.
[Quote]
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 RelatedHow 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.
View 2 Replies View RelatedI'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 RelatedI dropped my phone in the toilet and it was completely water damaged. Its working fine now only problem is the camera is not working now. It keeps forcing close.....
View 2 Replies View RelatedI took my phone in today to get it checked out and the Verizon rep said that Android 2.2 is being tested on the Eris. Am not sure if he was being serious or was trying to make me feel happy
View 49 Replies View RelatedI want user to take picture using camera application. Then send the image to my application through "share". Does anyone knows how to do that?
View 2 Replies View RelatedI really wanted GDE to work but today it made my phone all but useless. It locked up my phone for 5 minutes, so i pulled the battery to reset and for the next 45 minutes the phone app would not work at all, it would open but would not dial any #, and the rest of GDE was so slow i couldnt do anything. I couldnt turn wifi on or off, gps on or off, close open programs or open new ones. I finally had to uninstall it cause it was just too much for the phone. Its a shame cause i liked it, i installed home ++ today and seems to be doing ok.
View 1 Replies View RelatedI want to add sound in android web view application. ( The sound should be play when click a button in the screen.) My html application worked in the browser. But not worked in android.I don't know why? My code...
View 2 Replies View RelatedJust saw this app in the market to root your phone. Any other Hero users tested it out?
View 9 Replies View RelatedCan anyone tell me if there is an application to get a zoom for the camera in the x10 mini. If so can you tell me the name of it (hopefully a free app)
Must admit although I love the phone I was a little annoyed i had to download an app to be able to send things via bluetooth!
Today I dropped my HTC Hero on the ground from less than a foot above and when it dropped it turned off so I went to turn it back on and after multiple tries finally got it to the hold screen. When I went to pull down the hold screen to go to the home screen it went to the screen when you're turning it on that says "hTc". I immediately hit end and it goes back to the hold screen then when I pull it down it again it says that some of the applications, which I assume by their name is part of the phone processing, isn't working so I have to force it close. The weird thing is I still get my emails and texts and when a phone call comes in it says the Android application isn't working. Anybody know what is going on here?
View 1 Replies View RelatedSince I've bought the hero I have not installed a task manager and I would see it getting a little more laggy or choppy. So I decided to install task killer, my phone is back to being the way it was when I first got it. I know the rumors and all but I do think task manager is the way to go from 90mp free to 180mb.
View 10 Replies View RelatedI'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:......................
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 RelatedI'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 RelatedSo will two identical phones on the same carrier give the same results when speed tested side by side?Stock EVO running 2.2
View 5 Replies View RelatedWhen 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 RelatedWorked 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 RelatedMy 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 RelatedWhen 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 RelatedDoes anyone know of any apps that can disable the camera? My work does not allow camera phones.
View 8 Replies View RelatedI 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 RelatedStrange 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 RelatedHow do I pass an Intent from my application to the Camera application to bring it to the foreground?
View 4 Replies View RelatedWhen 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 RelatedI'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
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.
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 RelatedBought 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