when starting an activity with ACTION_SEND intent I get a menu with gmail, facebook, bluetooth… How can I get only email apps in this menu?
Thanks
Intent intent = new Intent(android.content.Intent.ACTION_SEND);
intent .putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{email});
intent.setType("text/plain");
startActivity(intent);
have you tried action ACTION_SENDTO and setting your email as a data? http://developer.android.com/reference/android/content/Intent.html#ACTION_SENDTO
You always also can use explicit call of needed activity.