Re: [android-developers] Selecting picasa photos in gallery

2012-01-04 Thread arnouf
I would like to know if you found a solution to load image from Picasa when user select an image in the gallery ? Let me know -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Selecting picasa photos in gallery

2011-10-25 Thread Mark Andrachek, Jr.
I've entered a bug: http://code.google.com/p/android/issues/detail?id=21234 -- 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

Re: [android-developers] Selecting picasa photos in gallery

2011-10-24 Thread Mark Andrachek, Jr.
I'm running into something very similar trying to get thumbnails. I use this to get select the image from the gallery: Intent intent = new Intent(Intent.ACTION_PICK); intent.setType(image/*); intent.putExtra(return-data, true); startActivityForResult(Intent.createChooser(intent,Complete action

Re: [android-developers] Selecting picasa photos in gallery

2010-05-14 Thread Thiago Rafael Becker
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

[android-developers] Selecting picasa photos in gallery

2010-04-13 Thread Krizai
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);