I am working on android Intent class to implement the 'Invite Friends' screen. I used the below code for it.
The above code returns me the apps like bluetooth, flipboard, facebook, whatsapp etc.
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, getString(R.string.invite_friends));
sendIntent.setType("text/plain");
Intent chooser = Intent.createChooser(sendIntent,getString(R.string.invite_send_tittle));
if (sendIntent.resolveActivity(getPackageManager()) != null)
{
startActivity(chooser);
}
What I need is only messaging(sms, whatsapp, twitter etc.) and email apps. How to get only messaging and email apps?
In short I am looking for invite options like WhatsApp.
Thanks, Aditya