仅通过 Android Studio 中的 Intent 打开电子邮件应用程序

Sho*_*lid 4 java android android-intent android-activity android-studio

我不想发送 emails给其他用户。我只希望打开launching activityEmail。我已经通过不同的方式尝试过,但每次发送email(compose)都是打开的。但我只想打开Email应用程序(已发送、发件箱、垃圾邮件、垃圾邮件等)。

我的代码在下面

Intent intent = new Intent(Intent.ACTION_SENDTO)
    .setData(Uri.parse("mailto:"));

//check if the target app is available or not

if (intent.resolveActivity(getPackageManager()) != null) {
    startActivity(intent);
}
Run Code Online (Sandbox Code Playgroud)

同样,此代码打开send email to(撰写)选项。但我想打开Email应用程序(已发送、发件箱、垃圾邮件、垃圾邮件等)。

Nag*_*hal 6

使用此代码打开默认邮件应用程序:

try {
    Intent intent = new Intent(Intent.ACTION_MAIN);
    intent.addCategory(Intent.CATEGORY_APP_EMAIL);
    this.startActivity(intent);
} catch (android.content.ActivityNotFoundException e) {
    Toast.makeText(Dashboard.this, "There is no email client installed.", Toast.LENGTH_SHORT).show();
}
Run Code Online (Sandbox Code Playgroud)