Advertisement
Guest User

Untitled

a guest
Aug 1st, 2015
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. Intent detail = new Intent(Intent.ACTION_VIEW, Uri.parse("imdb://<imdb_id>"));
  2. if (context.getPackageManager().resolveActivity(test, 0) != null) {
  3. startActivity(this, detail);
  4. } else {
  5. Toast.makeText(this, "IMDB not installed", Toast.LENGTH_LONG).show();
  6. }
  7.  
  8. startActivity(this, new Intent("target.app.action"));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement