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

[ad_1]

You can launch an application with the package name:

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

[ad_2]

solved Android Intent to launch yahoo messenger [closed]