Thanks for your reply. I tried to get the Uri but I'm facing the same
problem I had a few months ago. In the Samsung, when I try to get Uri,
the result is "null"... I really have no idea how to get the uri from
this device.

This is my intent:
                               Intent camara = new
Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
and on "onActivityResult(...)" I did :
                              Uri picUri = data.getData(); //data is
the intent I have as a parameter in the method.
but picUri is null in the samsung.
Any ideas?


On Jun 14, 3:18 pm, Streets Of Boston <[email protected]> wrote:
> Instead of getting the raw (but very small) bitmap data, get the Uri of the
> (full-sized) bitmap instead. The Uri is part of the result of an ACTION_PICK
> intent, if i'm not mistaken. Then, given the Uri, read the full bitmap data
> yourself.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to