English 中文(简体)
无法发送电子邮件,也无法对真实装置进行roid应用
原标题:unable to send email from android application on real device
  • 时间:2012-05-11 06:09:19
  •  标签:
  • android

我开发了一份发送电子邮件的申请。 电子邮件虽然在装置上运行,但实际上并未发送“Message Sending......”。

我的守则是:

Intent email = new Intent(Intent.ACTION_SEND);
email.putExtra(Intent.EXTRA_EMAIL, new String[]{"[email protected]"});

email.putExtra(Intent.EXTRA_SUBJECT, "subject");
email.putExtra(Intent.EXTRA_TEXT, body);
email.setType("plain/text");
startActivity(Intent.createChooser(email, "Sending mail..."));
最佳回答
Intent sendIntent = new Intent(Intent.ACTION_SEND);
String []mailto = { "Your emill id"};
sendIntent.putExtra(Intent.EXTRA_EMAIL,mailto);
sendIntent.putExtra(Intent.EXTRA_SUBJECT,"");
sendIntent.putExtra(Intent.EXTRA_TEXT, "");
sendIntent.setType("text/plain");
startActivity(Intent.createChooser(sendIntent, "MySendMail"));

and in your manifest:

<uses-permission android:name="android.permission.INTERNET" />
问题回答

你们使用的是意向,不应寄送电子邮件,而是发射安装在该装置上的电子邮件客户。

Android将自动过滤应用,说它们能够发送平原/文字,并促使使用者相信他想要使用。

但是,根据用户最后选择的口号,用户在寄出邮件之前将有机会审查邮件和其他问题。

如果你只想寄送电子邮件,那么你就不得不执行自己的电子邮件客户(即有充裕的java电子邮件校准),或者使用明确意图(而不是你现在使用的暗指)直接发送电子邮件。

我希望这一点足够清楚。

More informations on the official doc : http://developer.android.com/reference/android/content/Intent.html





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签