Buriilechat adlı üyeden alıntı: mesajı görüntüle
merhabalar webview uygulama yaptım fakat android de pdf, doc ,xml gibi uzantılara sahip dökümanları bir türlü indirme kodunu ayarlayamadım yardımcı olursanız sevinirim
activity aşağıdaki kod ile bi download lister ekle
mWebView.setDownloadListener(new DownloadListener() {

@Override
public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype, long contentLength) {
DownloadManager.Request request = new DownloadManager.Request( Uri.parse(url)); request.allowScanningByMediaScanner();
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
request.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, "indirilen dosya adını buraya yaz");
DownloadManager dm = (DownloadManager) getSystemService(DOWNLOAD_SERVICE); dm.enqueue(request); Toast.makeText(getApplicationContext(), "İndirme başladı",
Toast.LENGTH_LONG).show();
}
});
son olarak manifestte dosya yazma iznini ekle
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />