How to share text to WhatsApp from my app?

前端 未结 9 1220
醉话见心
醉话见心 2020-12-04 12:27

I develop an app with a functionality for sharing text. This is working fine except for WhatsApp. What should I do? Is there any specific API for that?

9条回答
  •  日久生厌
    2020-12-04 12:55

      Intent sendIntent = new Intent();
        sendIntent.setAction(Intent.ACTION_SEND);
        sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
        sendIntent.setType("text/plain");
    sendIntent.setPackage("com.whatsapp");
        startActivity(sendIntent);
    

提交回复
热议问题