我正在开发有一个发送电子邮件模块的应用程序。我尝试了很多教程,但电子邮件没有发送,也没有异常或错误。我在这里分享我用来发送电子邮件的所有代码。
final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("plain/text");
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{ email.getText().toString()});
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, name.getText());
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, smessage.getText());
Email.this.startActivity(Intent.createChooser(emailIntent, "Send mail..."));
这个不工作然后我试过了
Intent emailIntent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts(
"mailto","waleedahmed_786@yahoo.com", null));
emailIntent.putExtra(Intent.EXTRA_SUBJECT, "EXTRA_SUBJECT");
emailIntent.setTypeAndNormalize("plain/text");
startActivity(Intent.createChooser(emailIntent, "Send email..."));
它也没有奏效。然后我试过了
Intent feedback = new Intent(Intent.ACTION_SEND);
feedback.putExtra(Intent.EXTRA_EMAIL, new String[]{ to});
//email.putExtra(Intent.EXTRA_CC, new String[]{ to});
//email.putExtra(Intent.EXTRA_BCC, new String[]{to});
feedback.putExtra(Intent.EXTRA_SUBJECT, subject);
feedback.putExtra(Intent.EXTRA_TEXT, message);
//need this to prompts email client only
feedback.setType("text/plain");
startActivity(Intent.createChooser(feedback, "Choose an Email client :"));
我已经尝试了所有这三个代码,但甚至没有一个代码片段有效,我已经在 Google nexus 上进行了测试,但它没有用
这是我的xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/bg">
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/header_bg" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="0.28"
android:background="@drawable/back"
android:orientation="vertical" >
</LinearLayout>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="38dp"
android:layout_weight="0.28"
android:paddingLeft="50dp"
android:paddingTop="15dp"
android:text="@string/ReceiptOrganizer"
android:textAppearance="?android:attr/textAppearanceMedium" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/receipt_added_bg">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="20dp" >
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Name" />
<EditText
android:id="@+id/name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="textPersonName" >
<requestFocus />
</EditText>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="20dp" >
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Email" />
<EditText
android:id="@+id/email"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="textEmailAddress" >
<requestFocus />
</EditText>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="20dp" >
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Feedback" />
<EditText
android:id="@+id/msg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="textMultiLine" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="20dp" >
<Button
android:id="@+id/send"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="left"/>
</LinearLayout>
</LinearLayout>