[Solved] Android Intent to launch yahoo messenger [closed]


You can launch an application with the package name:

public void openApplication(String packageName) {
  Intent iLaunch = getPackageManager().getLaunchIntentForPackage(packageName);
  startActivity(iLaunch);
 }

solved Android Intent to launch yahoo messenger [closed]