以下作为参考 webview, download file on finish prepared document
我想到了一个可能的解决方案,但因为它不是同一个疑问。 他们可能的解决方案是"拦截"具体的POST标题并重定向到 intent.ACTION_VIEW 但是找不到一些例子。
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if (Uri.parse(url).getHost().equals("www.example.com")) {
// This is my web site, so do not override; let my WebView load the page
return false;
}
// Otherwise, the link is not for a page on my site, so launch another Activity that handles URLs
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(intent);
return true;
}