使用Notification更新多任务下载进度。大牛请绕路!!!
在网上真心没找到实现这样的代码,工作需要,只能苦X 自己实现了。
转载请注明:http://cn23snyga.iteye.com/blog/1902071
如图:
启动页面NotificationActivity06:(从这文件名,就可以看出我苦X 了多少个版本)
package com.example.notification06; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.view.View; import com.example.services.DownloadServices; public class NotificationActivity06 extends Activity { private Context mContext = NotificationActivity06.this; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } public void downloadNP(View view) { startDownloadService(0, "http://61.50.254.57:8088/nature-person/mobilenature/download/NaturalSaler_common.apk"); } public void downloadYUN(View view) { startDownloadService(1, "http://mix.911860.com/resources/apkupdate/7/common/mix-common.apk"); } public void downloadTNews(View view) { startDownloadService(2, "http://mix.911860.com/resources/mix/custom-apks/01-TencentNews/TencentNews.apk"); } public void startDownloadService(int notifyId, String url) { Intent i = new Intent(mContext, DownloadServices.class); i.putExtra("url", url); i.putExtra("notifyId", notifyId); mContext.startService(i); } }
其中的下载链接,换成自己需要的就好了。
下载服务DownloadServices:
package com.example.services; import java.io.File; import java.util.HashMap; import java.util.Map; import java.util.Timer; import java.util.TimerTask; import android.app.Notification; import android.app.NotificationManager; import android.app.Service; import android.content.Context; import android.content.Intent; import android.os.Handler; import android.os.IBinder; import android.os.Message; import android.widget.Toast; import com.example.bean.DownloadTask; import com.example.bean.NotificationBean; import com.example.notification06.R; import com.example.utils.DownloadUtil; import com.example.utils.DownloadUtil.IOnDownloadListener; public class DownloadServices extends Service { private Context mContext = DownloadServices.this; /** 正在下载 */ private final int DOWN_LOADING = 0; /** 下载完成 */ private final int DOWN_COMPLETE = 1; /** 下载失败 */ private final int DOWN_ERR = 2; /** Timer 执行时间间隔 */ private final int TIMER_PERIOD = 1500; protected Timer mTimer; protected NotificationManager mNotificationManager; /** 下载任务管理 */ protected Map<String, DownloadTask> map_downloadtask; @Override public IBinder onBind(Intent intent) { return null; } @Override public void onDestroy() { super.onDestroy(); } @Override public void onCreate() { // TODO Auto-generated method stub super.onCreate(); mTimer = new Timer(); mNotificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); map_downloadtask = new HashMap<String, DownloadTask>(); } @Override public int onStartCommand(Intent intent, int flags, int startId) { String mUrl = intent.getExtras().getString("url"); int mNotifyId = intent.getExtras().getInt("notifyId"); Notification mNotification = new NotificationBean(this, R.drawable.ic_launcher, "开始下载", System.currentTimeMillis()); System.out.println("NotifyId = " + mNotifyId); if(map_downloadtask.containsKey(mUrl)){ Toast.makeText(mContext, "已存在此下载任务", Toast.LENGTH_SHORT).show(); } else{ DownloadTask mDownloadTask = new DownloadTask(); mDownloadTask.setUrl(mUrl); mDownloadTask.setNotifyID(mNotifyId); mDownloadTask.setNotification(mNotification); map_downloadtask.put(mUrl, mDownloadTask); Runnable mRunnable = new MyRunnable(mDownloadTask); new Thread(mRunnable).start(); } return super.onStartCommand(intent, flags, startId); } class MyRunnable implements Runnable { private DownloadUtil mDownUtil = new DownloadUtil(); private DownloadTask mDownTask; private Handler mHandler; private TimerTask mTimerTask; public MyRunnable(DownloadTask downTask) { super(); this.mDownTask = downTask; this.mHandler = new MyHandler(mDownUtil); this.mTimerTask = new MyTimerTask(mDownUtil, mHandler, mDownTask); } @Override public void run() { mTimer.schedule(mTimerTask, 0, TIMER_PERIOD); mDownUtil.downloadFile(mDownTask.getUrl()); } } class MyTimerTask extends TimerTask { private Handler mHandler; private DownloadUtil mDownUtil; private DownloadTask mDownTask; private IOnDownloadListener mListener; public MyTimerTask(DownloadUtil downUtil, Handler handler, DownloadTask downTask) { super(); this.mHandler = handler; this.mDownUtil = downUtil; this.mDownTask = downTask; this.mListener = new IOnDownloadListener() { @Override public void updateNotification(int progress, int totalSize, File downFile) { // TODO Auto-generated method stub int rate = 0; // 计算百分比 if (totalSize > 0) { rate = progress * 100 / totalSize; mHandler.obtainMessage(DOWN_LOADING, rate, mDownTask.getNotifyID(), mDownTask.getNotification()).sendToTarget(); } else if (totalSize == 0) { mHandler.obtainMessage(DOWN_LOADING, 0, mDownTask.getNotifyID(), mDownTask.getNotification()).sendToTarget(); } else { cancel(); mHandler.obtainMessage(DOWN_ERR, mDownTask).sendToTarget(); } // 是否下载结束 if (totalSize > 0 && null != downFile && totalSize == (int) downFile.length()) { cancel(); mHandler.obtainMessage(DOWN_COMPLETE, downFile).sendToTarget(); map_downloadtask.remove(mDownTask.getUrl());// 移除已完成任务 System.out.println("DOWN_COMPLETE ==> totalSize ==> " + totalSize); } } }; } @Override public void run() { mDownUtil.setOnDownloadListener(mListener); } } class MyHandler extends Handler { private DownloadUtil mDownUtil; public MyHandler(DownloadUtil downUtil) { super(); this.mDownUtil = downUtil; } @Override public void handleMessage(Message msg) { switch (msg.what) { case DOWN_LOADING: ((Notification)msg.obj).contentView.setProgressBar(R.id.pb, 100, msg.arg1, false); ((Notification)msg.obj).contentView.setTextViewText(R.id.tv, "下载" + msg.arg1 + "%"); mNotificationManager.notify(msg.arg2, ((Notification)msg.obj)); System.out.println("DOWN_LOADING --> mNotifyId --> " + msg.arg2 + " --> " + msg.arg1 + "%"); break; case DOWN_COMPLETE: // mNotificationManager.cancel(mNotifyId); removeMessages(DOWN_LOADING); Toast.makeText(mContext, "下载完成", Toast.LENGTH_SHORT).show(); mDownUtil.installApk(mContext, (File)msg.obj); System.out.println("======================DOWN_COMPLETE================================"); stopService(); break; case DOWN_ERR: removeMessages(DOWN_LOADING); map_downloadtask.remove(((DownloadTask)msg.obj).getUrl()); Toast.makeText(mContext, "下载失败", Toast.LENGTH_SHORT).show(); stopService(); break; default: break; } } /** * 如果无下载任务,关闭服务 */ private void stopService(){ if(map_downloadtask.isEmpty()){ stopSelf(-1); } } } }
封装Notification:
package com.example.bean; import android.app.Notification; import android.app.PendingIntent; import android.content.Context; import android.content.Intent; import android.widget.RemoteViews; import com.example.notification06.NotificationActivity06; import com.example.notification06.R; public class NotificationBean extends Notification { private Context mContext; public NotificationBean(Context context, int icon, CharSequence tickerText, long when) { super(icon, tickerText, when); this.mContext = context; this.flags = Notification.FLAG_AUTO_CANCEL; // |= // this.flags = Notification.FLAG_ONGOING_EVENT; RemoteViews mRemoteView = new RemoteViews(mContext.getPackageName(), R.layout.remote_view); this.contentView = mRemoteView; Intent intent = new Intent(mContext, NotificationActivity06.class); // 点击安装APK 未实现 intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP); PendingIntent pIntent = PendingIntent.getActivity(mContext, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT); this.contentIntent = pIntent; } }
封装下载任务DownloadTask:
package com.example.bean; import android.app.Notification; public class DownloadTask { private String url; private int notifyID; private Notification notification; public DownloadTask() { // TODO Auto-generated constructor stub } public Notification getNotification() { return notification; } public void setNotification(Notification notification) { this.notification = notification; } public int getNotifyID() { return notifyID; } public void setNotifyID(int notifyID) { this.notifyID = notifyID; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } }
完毕。
相关推荐
本教程将详细讲解如何在Android中使用Service进行后台下载,并实时更新Notification的进度条。 首先,我们需要创建一个Service,通常继承自`IntentService`。`IntentService`是一个单线程的Service,自动管理工作...
"Notification中更新进度条"这个主题聚焦于如何在Notification上动态地显示任务的进度,比如下载、上传等操作。 首先,我们要了解`Notification`的基本结构。在Android中,`Notification`对象由`NotificationCompat...
本篇主要探讨如何使用`Service`、`Notification`以及进度条来实现一个优雅的后台下载更新过程。首先,我们需要理解`Service`在Android中的作用。 `Service`是Android四大组件之一,它在后台运行,不提供用户界面,...
本示例"Android notification进度条 demo"专门关注如何在通知中集成进度条,为用户提供一个可视化的操作进度指示。 Android的通知系统允许开发者创建各种类型的通知,包括带有进度条的。这种通知通常用于显示后台...
在Android开发中,实现多文件下载并展示...综上所述,实现Android多文件下载并显示进度条涉及了网络请求、多线程、文件IO、数据持久化、UI更新、错误处理等多个技术点。合理的设计和实现可以提供流畅且可靠的下载体验。
"用服务更新软件的安装包配合notification更新进度条" 这一主题主要涉及到如何在后台执行文件下载,并通过服务(Service)来监控下载进度,同时利用Notification向用户反馈下载状态。以下是对这一主题的详细阐述: ...
总之,“Android更新下载进度条 demo”项目是一个很好的学习案例,涵盖了Android开发中的关键概念,包括`RemoteViews`的使用、通知栏通知的构建、异步任务的处理,以及下载过程中的用户反馈。通过实践这个demo,...
在多线程下载中,我们通常使用确定进度模式,根据下载的百分比更新进度条。 3. **ListView**: `ListView`是一个可滚动的视图,用于展示多个同类型的项。在本项目中,可能用于显示多个下载任务的状态,每个任务都...
这个压缩包"安卓进度条loadingprogress相关-Android多文件下载进度条.rar"似乎包含了一些资源和代码示例,帮助开发者实现多文件下载时的进度条显示。下面将详细探讨Android中如何实现这样的功能。 首先,`JavaApk...
- 实现进度条下载通常需要一个后台服务或者使用`JobScheduler`来确保即使应用在后台也能继续执行下载任务,并定期更新Notification。 8. **使用DownloadManager** - Android提供了一个内置的`DownloadManager`类...
而“带进度条(ProgressBar)的Notification”则是进一步提升用户体验的一种设计,它允许用户在不解锁设备的情况下了解后台任务的执行进度,如下载、上传或安装等操作。 **Notification的基本结构** 一个Notification...
综上所述,"Android更新带进度条的通知栏"涉及到Android的通知系统、Notification类的使用、进度条的设置与更新,以及自定义通知样式和响应用户操作。通过这些知识点,开发者可以为用户提供更丰富的交互体验,提高...
通过IntentService处理后台下载任务,BroadcastReceiver实时更新UI,以及使用通知保证服务在后台运行,可以为用户提供流畅的下载体验。注意在实际应用中,还需要处理网络异常、文件写入异常等各种错误情况,并根据...
综上所述,创建一个带有下载进度条的Android应用程序需要综合运用网络编程、多线程、UI更新、文件操作以及错误处理等多个技术点。在实现过程中,注意代码的可维护性和用户体验的提升,这样才能创建出高效且用户友好...
8. **ProgressBar与Notification**:在某些情况下,例如后台服务执行任务时,进度条也可以在通知栏中显示,这涉及到Notification的构建和更新。 这个源码项目将帮助学习者了解如何在实际应用中集成和控制...
6. **进度通知** (Progress Notification): 当需要显示任务的进度,如下载或上传时,可以使用这种类型的通知,可以是indeterminate(不确定)或determinate(确定)进度条。 7. **优先级通知** (Priority ...
在Android开发中,多任务多线程断点下载是一项重要的技术,它允许用户在任何时间点暂停下载,然后在稍后的时间继续从停止的地方开始,而不需要重新下载已有的部分。这种技术通常用于处理大文件的下载,如应用程序、...
在Android开发中,ListView是一种常用...以上是这个Android应用源码的关键知识点,通过学习和分析,开发者可以了解到如何在ListView中实现高效、可控的多任务下载功能。这对于提升应用的实用性和用户体验具有重要意义。
总结,Android多线程下载是提升用户体验的重要手段,通过合理地划分任务、并发执行、同步合并,以及断点续传,可以有效地提高下载效率,减少用户等待时间。`demo.apk`是一个很好的实践案例,值得开发者深入研究。