【发布时间】:2020-07-06 09:58:58
【问题描述】:
我在我的应用程序中使用 sites.google.com 作为 WebView。我在我的网站上有一个 mail us 选项,当用户点击 Main us 按钮时,它应该重定向他访问 Gmail 应用程序而不是网站。
【问题讨论】:
标签: java android webview gmail
我在我的应用程序中使用 sites.google.com 作为 WebView。我在我的网站上有一个 mail us 选项,当用户点击 Main us 按钮时,它应该重定向他访问 Gmail 应用程序而不是网站。
【问题讨论】:
标签: java android webview gmail
如果链接是mailto:example@gmail.com,它应该会自动打开一系列邮件应用程序。您不必在您的应用中进行任何更改,而是在网页的 HTML 中进行。
例子:
<a href="mailto:example@gmail.com?subject=Hello%20world!" target="_blank">Mailto with subject</a>
【讨论】: