webview调起浏览器

调起浏览器
url = "intent://" + url +"#Intent;scheme=http;action=android.intent.action.VIEW;end";

调起指定的app
url = "intent://" + host +"#Intent;scheme=指定scheme;package:指定包名;end";

参考https://developer.chrome.com/multidevice/android/intents

原文地址:https://www.cnblogs.com/lipeil/p/9985327.html