Reputation: 81
Good Day,
I want to implement a sharing in my app, where a simple text will be share in whatsapp by choosing multiple contact and will return to me the number of contact I chose to share with. I tried the code below, but only allows me one contact or a group.
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND_MULTIPLE);
intent.putExtra(Intent.EXTRA_TEXT, "Sample");
intent.setType("text/plain");
startActivity(intent);
Thanks in advance
Upvotes: 0
Views: 577