1、使用AsyncTask异步任务实现,调用publishProgress()方法刷新进度来实现(已优化)
public class MyAsyncTask extends AsyncTask<String,Integer,Integer> { private Context context; private NotificationManager notificationManager; private NotificationCompat.Builder builder; public MyAsyncTask(Context context){ this.context = context; notificationManager = (NotificationManager) context.getSystemService(Activity.NOTIFICATION_SERVICE); builder = new NotificationCompat.Builder(context); } @Override protected void onPreExecute() { super.onPreExecute(); builder.setSmallIcon(R.mipmap.ic_launcher) .setContentInfo("下载中...") .setContentTitle("正在下载"); } @Override protected Integer doInBackground(String... params) { Log.e(TAG, "doInBackground: "+params[0] ); InputStream is = null; OutputStream os = null; HttpURLConnection connection = null; int total_length = 0; try { URL url1 = new URL(params[0]); connection = (HttpURLConnection) url1.openConnection(); connection.setRequestMethod("GET"); connection.setReadTimeout(50000); connection.connect(); if(connection.getResponseCode() == 200){ is = connection.getInputStream(); os = new FileOutputStream("/sdcard/zongzhi.apk"); byte [] buf = new byte[1024]; int len; int pro1=0; int pro2=0; // 获取文件流大小,用于更新进度 long file_length = connection.getContentLength(); while((len = is.read(buf))!=-1){ total_length += len; if(file_length>0) { pro1 = (int) ((total_length / (float) file_length) * 100);//传递进度(注意顺序) } if(pro1!=pro2) { // 调用update函数,更新进度 publishProgress(pro2=pro1); } os.write(buf, 0, len); } } } catch (MalformedURLException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); }finally { try { if (is != null) { is.close(); } if (os != null) { os.close(); } } catch (IOException e) { e.printStackTrace(); } if (connection != null) { connection.disconnect(); } } return total_length; } @Override protected void onCancelled(Integer integer) { super.onCancelled(integer); } @Override protected void onCancelled() { super.onCancelled(); } @Override protected void onProgressUpdate(Integer... values) { super.onProgressUpdate(values); builder.setProgress(100,values[0],false); notificationManager.notify(0x3,builder.build()); //下载进度提示 builder.setContentText("下载"+values[0]+"%"); if(values[0]==100) { //下载完成后点击安装 Intent it = new Intent(Intent.ACTION_VIEW); it.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); it.setDataAndType(Uri.parse("file:///sdcard/zongzhi.apk"), "application/vnd.android.package-archive"); PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, it, PendingIntent.FLAG_UPDATE_CURRENT); builder.setContentTitle("下载完成") .setContentText("点击安装") .setContentInfo("下载完成") .setContentIntent(pendingIntent); notificationManager.notify(0x3, builder.build()); } } @Override protected void onPostExecute(Integer integer) { super.onPostExecute(integer); if(integer == 100) { Toast.makeText(context, "下载完成", Toast.LENGTH_SHORT).show(); } } }
2、使用系统服务来实现(不是特别推荐此方法)
//取得系统的下载服务 DownloadManager downloadManager= (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE); //创建下载请求对象 DownloadManager.Request request=new DownloadManager.Request(Uri.parse(downUrl)); request.setDestinationInExternalPublicDir("目录","文件名"); request.setNotificationVisibility(DownloadManager.Request.NETWORK_MOBILE|DownloadManager.Request.NETWORK_WIFI); request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED); downloadManager.enqueue(request);
总结
以上所述是小编给大家介绍的Android 下载文件通知栏显示进度条功能的实例代码,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!
本文向大家介绍Python HTTP下载文件并显示下载进度条功能的实现,包括了Python HTTP下载文件并显示下载进度条功能的实现的使用技巧和注意事项,需要的朋友参考一下 下面的Python脚本中利用request下载文件并写入到文件系统,利用progressbar模块显示下载进度条。 其中利用request模块下载文件可以直接下载,不需要使用open方法,例如: 下面的例子是题目中完整的例子
本文向大家介绍C# Winform下载文件并显示进度条的实现代码,包括了C# Winform下载文件并显示进度条的实现代码的使用技巧和注意事项,需要的朋友参考一下 方法一: 效果如下图所示: 代码如下: 实现方法二: WinForm下载文件并显示下载进度示例
本文向大家介绍kotlin实现通知栏提醒功能示例代码,包括了kotlin实现通知栏提醒功能示例代码的使用技巧和注意事项,需要的朋友参考一下 一、概述 2019年英雄联盟LPL赛区赛季赛打得火热,作为一个RNG粉丝,想通过app实现RNG赛程提醒,于是就有了这次技术实践。我在网上找了很久,几乎没找到使用kotlin实现通知栏提醒的合适的文章,于是就到安卓官网看文档,一边翻译一边研究,最终实现了一个简
本文向大家介绍Android使用AsyncTask下载图片并显示进度条功能,包括了Android使用AsyncTask下载图片并显示进度条功能的使用技巧和注意事项,需要的朋友参考一下 在Android中实现异步任务机制有两种方式,Handler和AsyncTask。这篇文章给大家介绍Android使用AsyncTask下载图片并显示进度条功能。 AsyncTask下载图片并显示下载进度,异步类As
本文向大家介绍Python 给下载文件显示进度条和下载时间的实现,包括了Python 给下载文件显示进度条和下载时间的实现的使用技巧和注意事项,需要的朋友参考一下 大家在下载文件时能够显示下载进度和时间非常好,其实实现它方法很简单,这里我写了个进度条的模块,其中还附带上了运行时间也就是下载时间了。 该模块调用了三个库: 1.os 2.requests 3.time 话不多说,先上代码!!!. 实现
本文向大家介绍vue页面加载时的进度条功能(实例代码),包括了vue页面加载时的进度条功能(实例代码)的使用技巧和注意事项,需要的朋友参考一下 先看一张图 如果我们的程序每次页面切换时,顶部也有一个进度条,那会让用户体验提升很大的。 npropgress插件 github地址 简单用法 - Vue 项目为例(详细配置,点击上面的github地址查看文档) 最简单的使用方式:vue项目的每次路由切换