in my app in one activity user can select multiple image from the gallery. the code is
Intent i = new Intent();
i.SetType("image/*");
i.PutExtra(Intent.ExtraLocalOnly, true);
i.PutExtra(Intent.ExtraAllowMultiple, true);
i.SetAction(Intent.ActionGetContent);
act.StartActivityForResult(Intent.CreateChooser(i, "Select Picture"), 202);
see i write this code
i.PutExtra(Intent.ExtraAllowMultiple, true);
and it is work good in the emulator but in the phone when the gallery is open and user long click on the image , no imgage selected how can i resolve this.