意图URI推出的Gmail应用程序意图、应用程序、URI、Gmail

2023-09-12 01:12:00 作者:执伞青衣袖

有没有URI可以指向Gmail应用程序在Android和帮助我推出来?

Is there any URI which can point to the GMAIL App in android and help me launch it?

推荐答案

我在我的应用程序使用这样的:

I'm using this in my apps:

Intent mailClient = new Intent(Intent.ACTION_VIEW);
mailClient.setClassName("com.google.android.gm", "com.google.android.gm.ConversationListActivity");
startActivity(mailClient);