Skip to content

Instantly share code, notes, and snippets.

@csaba-farkas
Forked from csabafarkas/ActivitySnippet.java
Created September 7, 2018 14:10
Show Gist options
  • Save csaba-farkas/2cce686a7d4ed963df482650d4aa7f81 to your computer and use it in GitHub Desktop.
Save csaba-farkas/2cce686a7d4ed963df482650d4aa7f81 to your computer and use it in GitHub Desktop.
New implicit intent with Uri data
private void openAnAppThatCanHandleThisIntent(Uri mapUri) {
Intent intent = new Intent(Intent.ACTION_VIEW);
if (intent.resolveActivity(getPackageManager()) != null) {
startActivity(intent);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment