Skip to content

Instantly share code, notes, and snippets.

@csabafarkas
Created November 28, 2017 21:39
Show Gist options
  • Save csabafarkas/620a02d0c6d0312788ab6cda1f3dac48 to your computer and use it in GitHub Desktop.
Save csabafarkas/620a02d0c6d0312788ab6cda1f3dac48 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