How to share text to WhatsApp from my app?

前端 未结 9 1245
醉话见心
醉话见心 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:57

    Intent share = new Intent(Intent.ACTION_SEND);
        share.setType("text/plain");
        share.putExtra(Intent.EXTRA_TEXT, "Your text");
        startActivity(Intent.createChooser(share, "Share using"));
    

提交回复
热议问题