[android-developers] Re: Does Camera API really works ?

2009-05-12 Thread indra
Does 1.5 have support for camera in portrait? Please post the code sample. Regards, Indra On Mar 16, 7:35 am, Iliyan Malchev malc...@google.com wrote: Can you attach the logcat output?  Source code would also be helpful. On Thu, Mar 12, 2009 at 9:18 AM, crowcasso crowca...@gmail.com wrote:

[android-developers] Re: Does Camera API really works ?

2009-03-16 Thread Iliyan Malchev
Can you attach the logcat output? Source code would also be helpful. On Thu, Mar 12, 2009 at 9:18 AM, crowcasso crowca...@gmail.com wrote: Currently the above code is crashing for me (even after fixing the 3 params instead of 2) when performing takePicture() with a IOException:

[android-developers] Re: Does Camera API really works ?

2009-03-12 Thread Streets Of Boston
Maybe i'm stating the obvious here: Did you assign the camera- permission to your application in your manifest file? On Mar 12, 12:18 pm, crowcasso crowca...@gmail.com wrote: Currently the above code is crashing for me (even after fixing the 3 params instead of 2) when performing takePicture()

[android-developers] Re: Does Camera API really works ?

2009-03-10 Thread Jun'ichi Hirayama
Hi David will you officially support the camera API in portrait mode? On Wed, Feb 18, 2009 at 1:08 AM, Dave Sparks davidspa...@android.comwrote: This code shouldn't even compile, this line is wrong: mCamera.takePicture(null, mPictureCallback); // requires 3 callback functions Camera is

[android-developers] Re: Does Camera API really works ?

2009-03-10 Thread Dave Sparks
In the future, we will officially support portrait mode camera. Cupcake will have unofficial support (there will be a way to set it to portrait mode through the setParameter interface), but I don't know if we'll be able to make that work for other hardware. On Mar 10, 3:11 am, Jun'ichi Hirayama

[android-developers] Re: Does Camera API really works ?

2009-02-17 Thread Dave Sparks
This code shouldn't even compile, this line is wrong: mCamera.takePicture(null, mPictureCallback); // requires 3 callback functions Camera is only supported in landscape mode. Cupcake release will unofficially support portrait mode (there will be no API for it, but I'll probably put some sample