Download File inside Webview in Android

 

Add download in WebView|Enable download in webview|Bin file download problem solved|Android Studio:

Code:

mywebView.setDownloadListener(new DownloadListener() {
    public void onDownloadStart(String url, String userAgent,
                                String contentDisposition, String mimetype,
                                long contentLength) {
        Intent i = new Intent(Intent.ACTION_VIEW);
        i.setData(Uri.parse(url));
        startActivity(i);
    }
});

Note: you need make hover on error for class import. when you do make hover there is option for class import.

Post a Comment

0 Comments