[android-developers] Re: How do I Activate the camera application from my app?

2009-08-24 Thread Getto
No. Camera App scale down bitmap when you use android.media.action.IMAGE_CAPTURE action :-\ If you found a work around please let me know. .g On Aug 21, 9:21 am, Friso friso.kl...@gmail.com wrote: How can I get the full-size image from the camera? This method gives me a 256x192 pixels image.

[android-developers] Re: How do I Activate the camera application from my app?

2009-08-21 Thread jagtap.jj
Refer this Intent i = new Intent(android.media.action.IMAGE_CAPTURE); try{ startActivityForResult(i, TAKEPICTURE_ACTIVITY); }catch(ActivityNotFoundException e){ Toast.makeText(this, Application not available, Toast.LENGTH_SHORT).show();

[android-developers] Re: How do I Activate the camera application from my app?

2009-08-21 Thread Friso
How can I get the full-size image from the camera? This method gives me a 256x192 pixels image. On Aug 21, 2:52 pm, jagtap.jj jagtap...@gmail.com wrote: Refer this Intent i = new Intent(android.media.action.IMAGE_CAPTURE);         try{                 startActivityForResult(i,