应用间跳转
跳转到指定的应用程序
Intent intent = new Intent(Intent.ACTION_MAIN);
ComponentName componentName = new ComponentName("com.android.settings", "程序name");
intent.setComponent(componentName);
startActivity(intent);
发布时间: 2012-09-24 13:49:41 作者: rapoo
应用间跳转
跳转到指定的应用程序
Intent intent = new Intent(Intent.ACTION_MAIN);
ComponentName componentName = new ComponentName("com.android.settings", "程序name");
intent.setComponent(componentName);
startActivity(intent);