Reputation: 4032
I am trying to Send message throgh variouse Apps like WhatsApp, Facebook, Twitter etc.
now I am using this:
Intent messageIntent =
new Intent(Intent.ACTION_VIEW,Uri.fromParts("smsto",showPhone.getText().toString(),null));
What should I use instead of smsto?
It will ask only for SMS Apps I want All message apps like Whatsapp, Facebook etc.
Upvotes: 2
Views: 376
Reputation: 617
try this,it ll help you in this
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, Html.fromHtml(textToShare));
startActivity(Intent.createChooser(sharingIntent,titleOfSharingWindow));
Upvotes: 2