Skip to content

Instantly share code, notes, and snippets.

@wangsy
wangsy / android-webview-download.java
Last active April 2, 2021 07:54
Android WebView File Download
mWebContents.setDownloadListener(new DownloadListener() {
@Override
public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimeType, long contentLength) {
try {
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url));
request.setMimeType(mimeType);
request.addRequestHeader("User-Agent", userAgent);
request.setDescription("Downloading file");