I am using the following code. Problem it that when I run this code on device. It open a Dailogbox that hase 3 options for sending a mail. "POP , email , gmail" etc.
By clicking the gamil the composer appear.
I just want to show Gamil mail composer directly. Instead of showing a dailog box for choosing the options. Please help me.
Intent emailIntent = new Intent(Intent.ACTION_SEND);
emailIntent.setType("text/html");
String subject = "My Subject";
emailIntent.putExtra(Intent.EXTRA_SUBJECT, subject);
emailIntent.setType("text/html");
String title = "<p align='center'>" + storyTitle + "<br/>" + storyPubDate + "</p>";
String data = "<p> Sent From ABC APP Sent from my Android </p>";
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, Html.fromHtml(title + data));
startActivity(Intent.createChooser(emailIntent, "Email:"));
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…