Reputation: 65
When Pick Photo From Android it allow me choose from (Gallery, Photos, and more applications )
I want to set Photos as default, and deny user to choose.
I use this code For Pick Multi Images
Picture illustrating my question
Upvotes: 0
Views: 89
Reputation: 65
Solution For Help
Change
var imageIntent = new Intent(Intent.ActionPick);
To
var imageIntent = new Intent(Intent.ActionGetContent);
Upvotes: 1