Documentation states that if an Intent can be processed by multiple applications the user will be prompted with a dialog asking him to choose the application to complete the action. Is there any way to make user select multiple applications that will complete the action one by one? For example, if I want to share a message I’ll be using ACTION_SEND with a specified MIME type and I’ll be prompted with a list of applications that can share the message. Can I make a user choose multiple apps to share message on Twitter, Facebook etc. at the same time? Thanks.
Documentation states that if an Intent can be processed by multiple applications the user
Share
Not native to Android.
That being said, there is nothing stopping you from using
PackageManagerandqueryIntentActivities()to create your own chooser that allows multiple selection, then dispatches the event to each checked item one by one.