Intent intent = new Intent();
intent.setComponent(new ComponentName("所要打开的程序包名", "所要打开的程序包名+主运行类名"));
intent.setAction(Intent.ACTION_VIEW);
startActivity(intent);
转载于:https://www.cnblogs.com/jasonkent27/p/4098419.html
Intent intent = new Intent();
intent.setComponent(new ComponentName("所要打开的程序包名", "所要打开的程序包名+主运行类名"));
intent.setAction(Intent.ACTION_VIEW);
startActivity(intent);
转载于:https://www.cnblogs.com/jasonkent27/p/4098419.html