This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Attempts to start an activity to handle the given intent, excluding activities of this app. | |
* <ul> | |
* <li>If the user has set a default activity (which does not belong in this app's package), it is opened without prompt.</li> | |
* <li>Otherwise, an intent chooser is displayed that excludes activities of this app's package.</li> | |
* </ul> | |
* | |
* @param context context | |
* @param intent intent to open | |
* @param chooserTitle the title that will be displayed for the intent chooser in case one needs to be displayed. |