如何打开gmail应用程序,而不是消息发送屏幕?

2w3kk1z5  于 2021-07-06  发布在  Java
关注(0)|答案(1)|浏览(355)

我想按一下按钮打开我的gmail应用程序。到处都展示了如何使用gmail发送消息 Intent.ACTION_SEND . 但我不想发信息。相反,我只想启动我的gmail应用程序,看看我的邮件列表。我该怎么做?也许我必须找到包名并启动应用程序,或者有其他更好的解决方案?

quhf5bfb

quhf5bfb1#

这是你的答案

Intent launchIntent = getPackageManager().getLaunchIntentForPackage("com.google.android.gm");
if (launchIntent != null) {
    startActivity(launchIntent);
} else {
    Toast.makeText(AccountActivity.this, "There is no Gmail App available in android", Toast.LENGTH_LONG).show();
}

相关问题