Ao clicar em um link de e-mail da um erro no webview como mostra abaixo :'(
como arrumar esse erro
ao clicar no link de email abrir o app de email
aqui no exemplo também colocamos um link de telefone se tiver na pagina tel:
copie o código abaixo e substitua no lugar onde mostra a imagem:
if (url.startsWith("tel:")) { Intent tel = new Intent(Intent.ACTION_DIAL, Uri.parse(url)); startActivity(tel); return true; } else if (url.contains("mailto:")) { view.getContext().startActivity( new Intent(Intent.ACTION_VIEW, Uri.parse(url))); return true; }else { view.loadUrl(url); return true; }
ficando assim: