[android-developers] Re: How do i multi select images in the Gallery and send there URL to my activity?

2010-12-22 Thread Hans-Erik
On 22 Dec, 20:17, Mark Murphy mmur...@commonsware.com wrote: ACTION_SEND only supports sending one item. Thanks for your reply Do you know any other way to do this? My Activity is dormant and awaken by the user selecting images. There has to be another way to do this right? -- You received

[android-developers] Re: How do i multi select images in the Gallery and send there URL to my activity?

2010-12-22 Thread bruce
What you want is ACTION_SEND_MULTIPLE. You will receive a set of Uris. Something like if (Intent.ACTION_SEND_MULTIPLE.equals(action)) Intent.hasExtra(Intent.EXTRA_STREAM)) { ArrayListParcelable list = intent.getParcelableArrayListExtra(Intent.EXTRA_STREAM); for (Parcelable p : list)

[android-developers] Re: How do i multi select images in the Gallery and send there URL to my activity?

2010-12-22 Thread Hans-Erik
On 22 Dec, 20:48, bruce palant...@gmail.com wrote: What you want is ACTION_SEND_MULTIPLE. You will receive a set of Uris. Thanks Bruce! Coming from Java, Any book you can recommend learning android infrastructure? -- You received this message because you are subscribed to the Google Groups