Skip to content

Instantly share code, notes, and snippets.

@drakestone
Created February 21, 2013 07:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drakestone/5002897 to your computer and use it in GitHub Desktop.
Save drakestone/5002897 to your computer and use it in GitHub Desktop.
Package 명으로 Application 실행하기
Intent intent = getPackageManager().getLaunchIntentForPackage("com.android.settings");
if (intent != null)
startActivity(intent);
else
Toast.makeText(MainActivity.this,
"Could not launch this package.",
Toast.LENGTH_LONG).show();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment