Skip to content

Instantly share code, notes, and snippets.

@alvinsj
Created January 11, 2013 04:56
Show Gist options
  • Save alvinsj/4508046 to your computer and use it in GitHub Desktop.
Save alvinsj/4508046 to your computer and use it in GitHub Desktop.
calling other app activity
final Intent intent = new Intent();
ComponentName cName = new ComponentName
("package_name","package_name.class_name");
intent.setComponent(cName);
startActivity(intent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment