应用间跳转

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

你可能感兴趣的:(android)