gpt4 book ai didi

android - Webview "mailto:"链接和 "tel:"链接使用 Intent.ACTION_VIEW 工作,但是我如何添加唯一的主题即 "mailto:"链接

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:15:17 25 4
gpt4 key购买 nike

我已经使用下面的代码让它正常工作了。所有 http url 在 webview 中打开,“tel:”链接在拨号程序中打开,“mailto:”链接在电子邮件客户端中打开。

但我的问题是如何将“mailto:”链接的主题更改为不同的内容,而不是其预定义的主题。我猜应该有 2 个单独的 Intent ,1 个用于“tel:”链接,1 个用于“mailto:”链接。我根本不知道如何将代码放入下面的 shouldOverrideUrlLoading 方法中。或者,也许我使用了错误的方法来满足我的要求。

        @Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if( url.startsWith("http:") || url.startsWith("https:") ) {
return false;
}

// Otherwise allow the OS to handle it
Intent intent = new Intent(Intent.ACTION_VIEW,
Uri.parse(url));
startActivity(intent);
return true;
}

我设法让我自己的主题“mailto:”与 Intent 一起工作,但代码中没有包含“tel:”链接。那么我怎样才能同时做到这两个并在“mailto:”链接中使用我自己的主题呢?

任何想法或建议将不胜感激!

最佳答案

这是我的解决方案,对我有用。我希望它能帮助其他人解决我遇到的同样问题。

@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if( url.startsWith("http:") || url.startsWith("https:") ) {
return false;
}

// Otherwise allow the OS to handle it
else if (url.startsWith("tel:")) {
Intent tel = new Intent(Intent.ACTION_DIAL, Uri.parse(url));
startActivity(tel);
return true;
}
else if (url.startsWith("mailto:")) {
String body = "Enter your Question, Enquiry or Feedback below:\n\n";
Intent mail = new Intent(Intent.ACTION_SEND);
mail.setType("application/octet-stream");
mail.putExtra(Intent.EXTRA_EMAIL, new String[]{"email address"});
mail.putExtra(Intent.EXTRA_SUBJECT, "Subject");
mail.putExtra(Intent.EXTRA_TEXT, body);
startActivity(mail);
return true;
}
return true;
}

关于android - Webview "mailto:"链接和 "tel:"链接使用 Intent.ACTION_VIEW 工作,但是我如何添加唯一的主题即 "mailto:"链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20578719/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com