1

I want to send message to multiple people using my android application ,but for that I required to open Broadcast list option on chat page.so how to open chat page using android application?

1 Answers1

0

Try the following code:

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);
vektor
  • 3,312
  • 8
  • 41
  • 71
Ram Koti
  • 2,203
  • 7
  • 26
  • 36