Share a text with facebook messenger?

后端 未结 4 1466
囚心锁ツ
囚心锁ツ 2020-12-10 11:05

Is there a way to share a text in facebook messenger using android and maybe facebook sdk as well?

I want to make something like the whatsapp way, choose your text a

4条回答
  •  难免孤独
    2020-12-10 11:32

    use this code onClick,,

    com.facebook.orca is the package name for fb messenger.

        Intent sendIntent = new Intent();
        sendIntent.setAction(Intent.ACTION_SEND);
        sendIntent
                .putExtra(Intent.EXTRA_TEXT,
                        "<---YOUR TEXT HERE--->.");
        sendIntent.setType("text/plain");
        sendIntent.setPackage("com.facebook.orca");
        try {
            startActivity(sendIntent);
        }
        catch (android.content.ActivityNotFoundException ex) {
            Toast.makeText(context,"Please Install Facebook Messenger", Toast.LENGTH_LONG).show();
        }
    

提交回复
热议问题