[android-developers] Re: Camera application

2011-10-14 Thread mjmeyer
Without any logcat output or code as Fina suggested, I'd guess that you are setting a some specific camera parameter value that a particular model just doesnt support. There are wide ranges of camera hardware out there and I see many people do things like assume that 640x480 preview sizes are avai

[android-developers] Re: Camera application

2011-10-13 Thread Fina Perez
Can you provide some logcat or some code? What's the error you get on htc? On Oct 12, 10:29 am, nageswara rao rajana wrote: > Hi, > >     I developed an application on 2.1, i integrated built-in camera app in > my application. >     Its working perfectly on Samsung pop device but not working on H

[android-developers] Re: Camera Application Not Working When I Test on My Phone

2010-09-27 Thread als
Sorry that it's really late and you might not need an answer anymore, but I've just read this thread. Maybe your problem is the preview format parameter. Format YUV_422_SP is not valid in my Motorola Milestone and could be not valid in your HTC neither. Just try with YUV_420_SP. Is it working now?

[android-developers] Re: Camera Application Not Working When I Test on My Phone

2010-08-20 Thread Chris Maurer
ups.com > > > [mailto:android-develop...@googlegroups.com] On Behalf Of Mark Murphy > > Sent: Thursday, August 19, 2010 12:23 AM > > To: android-developers@googlegroups.com > > Subject: Re: [android-developers] Re: Camera Application Not Working When I > > Test on

[android-developers] Re: Camera Application Not Working When I Test on My Phone

2010-08-19 Thread Chris Maurer
egroups.com] On Behalf Of Mark Murphy > Sent: Thursday, August 19, 2010 12:23 AM > To: android-developers@googlegroups.com > Subject: Re: [android-developers] Re: Camera Application Not Working When I > Test on My Phone > > On Wed, Aug 18, 2010 at 8:51 PM, Chris Maurer wrote

RE: [android-developers] Re: Camera Application Not Working When I Test on My Phone

2010-08-18 Thread Tommy
ad to figure out trying to work with the camera. -Original Message- From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of Mark Murphy Sent: Thursday, August 19, 2010 12:23 AM To: android-developers@googlegroups.com Subject: Re: [android-developer

Re: [android-developers] Re: Camera Application Not Working When I Test on My Phone

2010-08-18 Thread Mark Murphy
On Wed, Aug 18, 2010 at 8:51 PM, Chris Maurer wrote: > When I step through the code I get an error in Looper.loop() line:124 > after the onCreate function. That information is not especially useful. We would need the stack trace, at least to the point where your own code starts showing up. > i a

[android-developers] Re: Camera Application Not Working When I Test on My Phone

2010-08-18 Thread Chris Maurer
When I step through the code I get an error in Looper.loop() line:124 after the onCreate function. On Aug 18, 12:26 am, Mark Murphy wrote: > Use adb logcat, DDMS, or the DDMS perspective in Eclipse to examine > the Java stack trace associated with your error. > > > > > > On Wed, Aug 18, 2010 at 1

[android-developers] Re: Camera Application Not Working When I Test on My Phone

2010-08-18 Thread Chris Maurer
i apologize for my ignorance, but what will the Java stack trace look like in logcat On Aug 18, 8:21 pm, Mark Murphy wrote: > On Wed, Aug 18, 2010 at 8:10 PM, Chris Maurer wrote: > > Here's the messages I get consistently when I start up the application > > > 08-19 00:01:03.135: ERROR/MediaPlaye

Re: [android-developers] Re: Camera Application Not Working When I Test on My Phone

2010-08-18 Thread Mark Murphy
On Wed, Aug 18, 2010 at 8:10 PM, Chris Maurer wrote: > Here's the messages I get consistently when I start up the application > > 08-19 00:01:03.135: ERROR/MediaPlayer(31): Unable to to create media > player > 08-19 00:01:03.135: ERROR/CameraService(31): Failed to load > CameraService sounds. > 08

[android-developers] Re: Camera Application Not Working When I Test on My Phone

2010-08-18 Thread Chris Maurer
Hi Mark, Here's the messages I get consistently when I start up the application 08-19 00:01:03.135: ERROR/MediaPlayer(31): Unable to to create media player 08-19 00:01:03.135: ERROR/CameraService(31): Failed to load CameraService sounds. 08-19 00:01:03.145: ERROR/MediaPlayer(31): Unable to to cre

[android-developers] Re: Camera application 1.5 on emulator does nothing

2009-07-15 Thread blindfold
So apparently it is the known SDK1.5_r1 and SDK1.5_r2 emulator bug where calling getSystemService(Context.SENSOR_SERVICE) makes an app hang. On Jul 15, 4:31 pm, "Thomas McKay - www.winebythebar.com" wrote: > Toggling off the orientation in the sound&display settings allows > camera to work in em

[android-developers] Re: Camera application 1.5 on emulator does nothing

2009-07-15 Thread Thomas McKay - www.winebythebar.com
Toggling off the orientation in the sound&display settings allows camera to work in emulator. On Jul 15, 9:33 am, "Thomas McKay - www.winebythebar.com" wrote: > To enable camera, is it simply a matter of hand editing the config.ini > in the avd dir? Do I need to update the avd with the android c

[android-developers] Re: Camera application 1.5 on emulator does nothing

2009-07-15 Thread Thomas McKay - www.winebythebar.com
To enable camera, is it simply a matter of hand editing the config.ini in the avd dir? Do I need to update the avd with the android command afterwards? The camera still is not working in emulator after below modifications hw.camera=yes sdcard.size=1000M skin.name=HVGA skin.path=platforms\android-

[android-developers] Re: Camera application 1.5 on emulator does nothing

2009-05-25 Thread Johnny Song
you must make sure that you have already implemented libcamera in your source code. 2009/5/22 arnouf > > Hi all, > > 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 not

[android-developers] Re: Camera application 1.5 on emulator does nothing

2009-05-23 Thread gymshoe
You probably have thought of this, but when you created the AVD did you enable camera support (the default is disabled)? see: http://developer.android.com/guide/developing/tools/avd.html cheers On May 22, 8:02 am, arnouf wrote: > Ok so you did the test that I would like to do. > For your inf

[android-developers] Re: Camera application 1.5 on emulator does nothing

2009-05-22 Thread arnouf
Ok so you did the test that I would like to do. For your information, if you make an AVD file with target 1.1, emulator is working correctly... On May 22, 1:03 pm, arjan broer wrote: > same problem here. > Running Ubuntu Linux, eclipse 3.4.1 > ADT 0.9.1.v200805011822-1621 > Android SDK 1.5_r1 --

[android-developers] Re: Camera application 1.5 on emulator does nothing

2009-05-22 Thread arjan broer
same problem here. Running Ubuntu Linux, eclipse 3.4.1 ADT 0.9.1.v200805011822-1621 Android SDK 1.5_r1 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to an

[android-developers] Re: Camera application 1.5 on emulator does nothing

2009-05-22 Thread arnouf
If it can help you to understand, below the Logs 05-22 09:51:58.651: WARN/WindowManager(575): performLayoutAndPlaceSurfacesLocked called while in layout 05-22 09:51:59.292: DEBUG/StatusBar(575): updateResources 05-22 09:52:00.732: DEBUG/CameraService(542): Connect E from ICameraClient 0xd220 05-22