时间:2021-05-21
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 下载文件通知栏显示进度条功能的实例代码,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
今天实现一个进度条加载过程,dom结构其实就是两个div控制里层div的宽width属性,就能实现进度条往前走的效果。我的进度条是显示下载文件的进度,简单实现一
我们在使用APP的过程中,软件会偶尔提示我们进行版本更新,我们点击确认更新后,会在通知栏显示下载更新进度(已知长度的进度条)以及安装情况(不确定进度条),这就是
本文实例讲述了Android编程实现通知栏进度条效果的方法。分享给大家供大家参考,具体如下:/***通知管理工具类**@description:*@author
有的时候程序需要有进度条显示,比如说安装程序、下载文件等场合。下面有一段小程序可达到效果程序代码importtimeforiinrange(0,101,2):t
本文实例为大家分享了Android实现带有进度条按钮效果的具体代码,供大家参考,具体内容如下安卓中带有进度条效果的按钮,如下图:1.布局文件如下activity