android webview不能直接下载文件
所以要实现下载文件要调用内置浏览器
如下
private class MWebViewDownLoadListener implements DownloadListener {
@Override
public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype, long contentLength) {
Uri uri = Uri.parse(url);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
}
}
webview.setDownloadListener(new MWebViewDownLoadListener());
这样就可以了
网友评论