如何使用安卓应用发送 HTML 邮件?
本例演示如何使用 Android App 发送 HTML 邮件。
步骤 1 − 在 Android Studio 中创建一个新项目,前往文件 ⇒ 新项目并填写所有必需的详细信息以创建新项目。
步骤 2 − 将以下代码添加到 res/layout/activity_main.xml 中。
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_margin="16dp"> <Button android:onClick="sendHtmlEmail" android:text="Send HTML Email" android:layout_width="match_parent" android:layout_height="wrap_content" /> </RelativeLayout>
步骤 3 − 将以下代码添加到 src/MainActivity.java 中
package app.com.sample; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.text.Html; import android.view.View; import androidx.appcompat.app.AppCompatActivity; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } public void sendHtmlEmail(View view) { String mailId = "[email protected]"; Intent emailIntent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts("mailto", mailId, null)); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject text here"); emailIntent.putExtra(Intent.EXTRA_TEXT, Html.fromHtml("<p><b>Some Content</b></p>" + "http://www.google.com" + "<small><p>More content</p></small>")); startActivity(Intent.createChooser(emailIntent, "Send email...")); } }
步骤 4 − 将以下代码添加到 androidManifest.xml 中
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="app.com.sample"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
让我们尝试运行你的应用程序。我假设你已经将你的真机安卓设备与你的电脑连接。要从 Android Studio 运行应用,打开你的某个项目活动文件,然后单击工具栏中的运行 图标。选择你的移动设备为选项,然后检查你的移动设备,该设备将显示你的默认屏幕 −
点击 此处 下载项目代码。
广告