应用间跳转跳转到指定的应用程序Intent intent new Intent(Intent.ACTION_MAIN) ComponentName compone
应用间跳转
跳转到指定的应用程序
Intent intent = new Intent(Intent.ACTION_MAIN);
ComponentName componentName = new ComponentName("com.android.settings", "程序name");
intent.setComponent(componentName);
startActivity(intent);
