0

我对android有点陌生。
我正在尝试通过 gmail 发送消息,这是我的代码。

Intent intent = new Intent(Intent.ACTION_SENDTO);  
String uriText;  
uriText = "mailto:test@gmail.com?subject=Subject&body=this is test.";  
uriText = uriText.replace(" ", "%20");  
Uri uri = Uri.parse(uriText);   
intent.setData(uri);  
startActivity(Intent.createChooser(intent, "Select mailer"));  

有用。但是,在发送消息之前,它会显示一个选择框
并要求我选择 gmail 或电子邮件。
如何跳过选择框?

任何帮助将不胜感激..谢谢。

4

1 回答 1

0

How can I skip the selection box ?

You don't. You allow the user to choose what application they wish to use to send the message. Some users do not use Gmail.

于 2012-05-09T11:07:29.713 回答