如何在Android中的工作聊天中打开特定的聊天?

时间:2019-06-24 22:30:56

标签: android facebook-workplace

我想在工作聊天应用中打开特定的对话

Intent launchIntent = getPackageManager().getLaunchIntentForPackage("com.facebook.workchat");
    if (launchIntent != null) {
        startActivity(launchIntent);
    }else{
        startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=com.facebook.workchat")));
    }

这只会打开工作聊天,但我希望它打开一个指定的聊天

0 个答案:

没有答案