Wednesday, April 4, 2012

Android Launch an application from another application activity

Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setComponent(new ComponentName("com.android.test", "com.android.test.LauncherProjectActivity"));
startActivity(intent);

No comments:

Post a Comment