You can do this with Intent .
Intent startMain = new Intent(Intent.ACTION_MAIN);
startMain.addCategory(Intent.CATEGORY_HOME);
startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(startMain);
This intention will launch the launch application that the user defined. Be careful with this because it will look as if your application did not expect this, your application will fail.