[android-developers] Re: For launching a camera from appl which action requires?

2009-04-05 Thread Ivan Soto
Actually I may need the same. I to start the the camera app and get the latest added picture. Ivan Soto Fernandez Web Developer http://ivansotof.com On Mon, Feb 2, 2009 at 11:29 PM, jj jagtap...@gmail.com wrote: Hello James Thanks for replying me, Actually I want Uri of this

[android-developers] Re: For launching a camera from appl which action requires?

2009-02-02 Thread jj
Hello James Thanks for replying me, Actually I want Uri of this image(Currently captured from camera) So that I can send this image by using : Uri uri = ContentUris.withAppendedId(Media.EXTERNAL_CONTENT_URI, 2); Intent i = new Intent(); i.setAction(Intent.ACTION_SEND);

[android-developers] Re: For launching a camera from appl which action requires?

2009-01-29 Thread James Yum
Hi, The bitmap is returned in the extras bundle, e.g.: Bundle extras = intent.getExtras(); Bitmap bitmap = (Bitmap) extras.get(data) ; However, be aware that the quality of the image cannot be specified at this time, but should be fixed in the future: