Any idea on how to solve this?

Thnaks in advance.
-- Thiago

On Tue, Apr 6, 2010 at 10:47 AM, Krizai <kri...@gmail.com> wrote:
> I'm starting gallery from my app to select photo. Everything is fine
> until i select photo from picasa.
> Result in onActivityResult is just an empty string "".
> Here is my code:
>                                Intent photoPickerIntent = new
> Intent(Intent.ACTION_PICK);
>                                photoPickerIntent.setType("image/*");
>
> startActivityForResult(photoPickerIntent, REQUEST_GALLERY);
> and
>            if (requestCode == REQUEST_GALLERY ||
>                    requestCode == REQUEST_CAMERA) {
>                uri = data.getData();
>                if (uri != null) {
>                     .....
>                }
>           }
>
> Is it possible to use picasa pictures in some way or if there isn't
> any just to disable showing picasa pictures in gallery.
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>
> To unsubscribe, reply using "remove me" as the subject.
>



-- 
Thiago Rafael Becker

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

Reply via email to