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 [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

To unsubscribe, reply using "remove me" as the subject.

Reply via email to