I am using this code to use email application from my app.
String mailText = "Full Name:" + fname.getText().toString();
String subject = "Support";
Intent email = new Intent(Intent.ACTION_SEND);
email.putExtra(Intent.EXTRA_EMAIL, new String[] { "support@roncocala.com" });
email.putExtra(Intent.EXTRA_SUBJECT, subject);
email.setType("plain/text");
email.putExtra(Intent.EXTRA_TEXT, mailText);
startActivity(Intent.createChooser(email, "Choose an Email client :"));
But it shows extra applications like SKype and ES File Lan . Is there a way to limit these application to mail applications like gmail,yahoo,hotmail. Please help.Thanks.