最近在做一个较简单的项目:通过一个webview来显示一个网页的App
这个网页有下载的功能,关于这一功能需要用到两个知识点:
1、webview监听网页的下载链接。(webview默认情况下是没有开启,在这个情况下,你会发现,在浏览器上可以正常下载的网页里的某个点击。在你的webview里面,点击是没有反应的);
2、使用系统的DownloadManager进行下载。
提前说下,在这两个小知识点遇到的坑:
需要Webview开启下载监听,否则,你会发现,点击下载,没有反应。
extends Activity implements DownloadListener //这里某个类实现这个下载监听
@Override
public void onDownloadStart(String url, String userAgent,
String contentDisposition, String mimetype, long contentLength) {
startDownload(url);
}
下载链接新开一个页签。结果神奇得可以了。安卓浏览器能够正常得下载网页相应的链接,我的webview也就能够监听到网页下载点击事件。
系统提供了DownloadManager比较简单。代码如下:
private void startDownload(String url) {
dm = (DownloadManager) this.getSystemService(Context.DOWNLOAD_SERVICE);
DownloadManager.Request request = new DownloadManager.Request(
Uri.parse(url));
request.setMimeType("application/vnd.android.package-archive");
request.setVisibleInDownloadsUi(true);
request.setDestinationInExternalFilesDir(this,
Environment.DIRECTORY_DOWNLOADS, "fileName");
enqueue = dm.enqueue(request);
}
3、第三个坑就是,插入了这段代码后,貌似可以下载了。为什么说貌似呢,因为手机顶部已经能够看到
这个下载的标志,但是没有多久就消失了。并且下拉看不到已下载的项目,此时,就无从点击安装下载的app。经过抓狂,以及最后的沉着冷静,最后发现,只要添加上一段代码就可以了。
private void startDownload(String url) {
dm = (DownloadManager) this.getSystemService(Context.DOWNLOAD_SERVICE);
DownloadManager.Request request = new DownloadManager.Request(
Uri.parse(url));
request.setMimeType("application/vnd.android.package-archive");
request.setVisibleInDownloadsUi(true);
request.setDestinationInExternalFilesDir(this,
Environment.DIRECTORY_DOWNLOADS,"fileName");
//添加下面这段代码 //添加下面这段代码
request.setNotificationVisibility(Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
enqueue = dm.enqueue(request); }
此时就能够在下拉,看到所下载的项目,点击,对下载的app进行安装。
至此实现了:
1、webview监听网页的下载链接。
2、使用系统的DownloadManager进行下载。