如何从其他应用程序打开Whatsapp

时间:2015-04-08 13:51:20

标签: android whatsapp

我正在开发一个Android应用程序 我想从我的应用程序打开(刚打开)WhatsApp。

如何从我的应用中打开WhatsApp?

1 个答案:

答案 0 :(得分:4)

你试过这个吗?

Intent launchIntent = getPackageManager().getLaunchIntentForPackage("com.whatsapp");
        startActivity(launchIntent);
相关问题