HTC EVO 4G :: Camera An Camcorder Refuses To Launch
Jun 16, 2010
I swear I did a search and found nothing. I just got my replacement evo and when I try to launch the camera or camcorder it opens and immediately closes. It doesn't give me an error it just closes. Anyone else experience this? If so, what's the solution?
View 10 Replies
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
Jul 2, 2010
Two times in as many days, my media apps would not let me access the camera or camcorder. I just kept getting a camera or camcorder icon and going back to the home screen. Any solution to this problem? A soft boot worked, yet is impractical if I want to shoot something spontaneous.
View 2 Replies
View Related
Oct 29, 2010
I have been trying to use the camcorder bit of my HTC Desire, and need to use it quite urgently. Wouldn't you know the damn thing has gone buggy just as I need to use it. It will NOT record, and it freezes the phone. Only putting it to sleep, or holding the Home key and choosing another recent app will stop it. However, it jams up the whole phone, which is evident when I check on System Panel, the CPU is constantly running at 100% Ridiculous. say I've ever seen a problem like this before, but I suppose I've not used the camcorder bit since the 2.2 update. I am at a loss at the moment as to what to do. I'll be honest and say my phone has experienced odd problems since getting that update. The extra "features" really aren't worth the bother I am now having.
View 23 Replies
View Related
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
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
Oct 14, 2010
Everytime I take a pic or record something, the screen goes blank and I'm forced to restart the phone before its useable again. Anyone run into this and is there a solution?
View 2 Replies
View Related
Dec 20, 2009
Is there anyway to zoom in or out with the camera and/or camcorder on the droid? If so, I cannot find it.
View 14 Replies
View Related
Sep 28, 2010
i just downloaded a build prop and rebooted and after that the camera and camcorder will open but only for a second or so.i need to fix it can someone help?i am running 2.2 leak and tranquility rom,
View 1 Replies
View Related
Aug 21, 2010
I upgraded to froyo and when I open the camcorder, it just opens and closes very fast. I restarted my phone and the camcorder was opening but after a minute it started closing again along with the camera. Anyone else?
View 5 Replies
View Related
Sep 15, 2010
Only in camera or camcorder mode. Three in the shape of a triangle.
View 3 Replies
View Related
Oct 10, 2010
I'm running rubix focused .5 and its been great, I installed the camera-search-voice fix and didnt have any problems along with having full camera functionality. Eventually I decided to try the Incognito theme since it had a "blurless" version. I noticed it changed my camera icon obviously but I didnt actually open it. I decided I didnt like it, so I restored my nandroid I made immediately before putting the theme on. Next thing I notice, my camera shortcuts are the generic green apk icon. And they dont work, at all.
I nandroid restore to an even earlier back-up (from right after applying rubix) and still no camera functionality. It doesnt appear in my apps under manage applications, the blurcamera.apk is in the system folder, and I tried deleting/replacing that again, and installing it right from the apk and I get an install failed. I don't understand how I could lose my camera app when I restore to a back-up that had it working fine.
View 2 Replies
View Related
Oct 2, 2010
Would this have to do with my ROM? I am running tranquility. What do I need to do to fix these issues?
View 9 Replies
View Related
Jul 21, 2010
My DroidX was working for the few days with no dead pixels on any of the menu screens, none on any of the software applications, and none on the Camera or Camcorder applications.
On Tuesday afternoon I downloaded and installed the DroidX 1.13.604 Software Update.
My DroidX now has some dead pixels that appear only in the Camera and Camcorder applications, and not in any of the other applications or menu items.
Since the dead pixels only occur in the Camera and Camcorder applications, could it be a software related bug or mayme something else?
View 5 Replies
View Related
Nov 4, 2010
[Droid X 2.2 No Root] For some reason sometimes when I'm using the camera or when I try to launch the camera, It fails. For example, I try to open a black screen flashes or the camera opens for a moment and closes. Sometimes it works, others it refuses to even after all running apps are closed, the phone restarted, and after a battery pull. This is not a shutter stick problem.
View 2 Replies
View Related
Oct 7, 2010
I can't find any intent which opens the camera. The closest I've found is ACTION_CAMERA_BUTTON but that breaks if the phone has no hardware button for the camera.
View 3 Replies
View Related
Dec 15, 2009
Does anyone know of a shortcut or a way to make a shortcut to launch the video camera app? I hate having to open the camera and try to operate the slider to change the mode to video. The Youtube app works but takes up too much space on the screen. I have BetterCut but have no idea how to make a shortcut to this function
View 2 Replies
View Related
Feb 8, 2010
Is it possible to start an activity from the built-in Camera app after the user touches the on-screen Capture button?
View 4 Replies
View Related
Jul 28, 2009
My application has buttons to launch gallery and video camera apps but the below code only seems to work on phones with the standard Cupcake build:
// For Gallery Intent intent = new Intent(); intent.setClassName("com.android.camera", "com.android.camera.GalleryPicker");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); mContext.startActivity(intent);
// For Video Camera Intent intent = new Intent(); intent.setClassName("com.android.camera", "com.android.camera.VideoCamera"); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); mContext.startActivity(intent);
On rooted / non-cupcake phones, I get this error:
android.content.ActivityNotFoundException: Unable to find explicit activity class {com.android.camera/com.android.camera.VideoCamera};
have you declared this activity in your AndroidManifest.xml? at android.app.Instrumentation.checkStartActivityResult (Instrumentation.java:1480) at android.app.Instrumentation.execStartActivity(Instrumentation.java: 1454) at android.app.Activity.startActivityForResult(Activity.java:2656) at android.app.Activity.startActivity(Activity.java:2700)
View 3 Replies
View Related
May 2, 2010
im trying to find the code to launch the camera app and I cant figure it out.
View 3 Replies
View Related
May 17, 2010
I just bought this phone off of CraigsList.When I try to launch the camera, whether using the dedicated camera button on the side of the phone or using the icon on the screen, the display goes blank for one second and then goes back to the Home screen.I called Tmobile, and they just had me do a hard reset which didn't have an effect.
View 4 Replies
View Related
Jun 26, 2010
I've already cleared application data and cache. What the hell?
View 11 Replies
View Related
Dec 26, 2009
I think I noticed a day or so after it actually started to do it...or not do it, rather.I've checked so many settings.It's set to vibrate in the actual settings. I set it to vibrate in handcent.I even turned on the stock messaging app to see if that would vibrate and nothing. I tried holding down end call to see if it would vibrate and nothing. The only time I've felt it vibrate is when powering on the phone.Anyone have any ideas? If not, is there an easy way to restore to factory defaults?
View 4 Replies
View Related
Sep 2, 2010
OK, heres the dealio. I have used root explorer to rename numerous .apk's to .bak's. All have nicely removed themselves from my app drawer...except for blockbuster. Anyone else with this issue or know how to resolve it. it is just sitting there smiling at me and it is useless now. If I tap to open it say it can't...no duh DX...I just renamed it...so why are you still here?? I have also already done a battery pull.
View 9 Replies
View Related
Aug 19, 2010
Been using internet brilliantly for about a month on HTC Desire right up to a couple of days ago after an update. Now it refuses to connect to any type of internet, 3G or WiFi.
I'm on contract with 3 (despite bad repuation in the past they appear to have caught up with other providers), but am still waiting to see if it is a problem on their side.
View 4 Replies
View Related
Jan 19, 2014
I have an s3 and the mic seems to work perfectly while calling but refuses to work when I go to record stuff with it.
View 1 Replies
View Related
Oct 5, 2010
I purchased the X10 yesterday. It was typing in landscape mode yesterday. However, it refuses to go into landscape mode today. What should I do? I haven't found any answers online.
View 1 Replies
View Related
Mar 14, 2010
On my old phone (unlocked iPhone),I subscribed to news and weather updates via SMS from a local radio station. The shortcode is 411923.Then I got Nexus One (same T-Mobile service and SIM) and still receive the messages from them. Well, one day, there was a big news day (chile earthquake?) and I was getting annoyed by them, so I was gonna reply with "STOP" like you do with most short codes.The Nexus absolutely refuses to even attempt to send this number a text. It won't even try. It immediately shows the "message failed <!>" notification and sound.I can send to various other shortcodes, but this and a few others, the Nexus won't try.I am sure I could get another T-Mobile phone and swap SIMs to do it from that phone.I am just wondering what is the problem?
View 1 Replies
View Related
May 1, 2010
My G2 Touch refuses to boot up and stays stuck in the initial logo screen. I removed the battery and switched it back on holding down the VOL DOWN button. The display shows:
HERO CVT SHIP S-ON
HBOOT-1.76.0007 (HERO10000)
TOUCH PANEL-fail
RADIO-6.35.07.08
Aug 4 2009,19:43:30
HBOOT
BACK FastBoot Mode
SEND Simlock
View 2 Replies
View Related
Mar 15, 2010
Apparently rooting and using custom ROMs hasn't solved this issue. Before I rooted my phone I was having the issue that, despite checking the "Use by default for this action" box, my phone just plain refused to save what homescreen app to go to when I tap the "Home" button.I've tried clearing the cache. I've done factory resets and data wipes (although I did restore "all apps with data" with Titanium Backup). I've tried using the Home Switcher app. Nothing works.Right now my phone is running the current version of BB, ChevyNo1's 1.0Ghz 5 slot update.zip for OC, and am using AdamZ's Smoked glass theme. I want to use the "HelixLauncher" app as my default homescreen, but it's rather obnoxious having to constantly select it when I hit the home button (it'll save my default action for a few clicks, and then I'll have to set it again).
View 11 Replies
View Related