需要:目标程序的包名、主类名。
代码:
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
ComponentName cn = new ComponentName("com.negier.bitmap", "com.negier.bitmap.MainActivity");
intent.setComponent(cn);
startActivity(intent);
com.negier.bitmap:目标程序包名
com.negier.bitmap.MainActivity:跳转到目标程序的类