Open Facebook Messenger in Android

前端 未结 3 406
盖世英雄少女心
盖世英雄少女心 2021-01-30 03:20

I want to open facebook messenger by code. How I can get the facebook ID?? I have the facebook SDK on my app and I saved for every user the facebookId but is not the same as I n

3条回答
  •  时光说笑
    2021-01-30 04:21

    First, check the app is existed in device or not and write the following lines to open.

    Intent intent = activity.getPackageManager().getLaunchIntentForPackage("com.facebook.orca");
    activity.startActivity(intent);
    

提交回复
热议问题