Example #1
0
 public void start() {
   progressNotification = new ProgressNotification();
   if (downloadManager.query(downloadId) == DownloadManager.STATUS_NOT_FOUND) {
     downloadId = downloadManager.add(downloadRequest);
   }
   progressNotification.showProgressNotify();
 }
Example #2
0
 @Override
 public void onProgress(int id, long totalBytes, int progress) {
   progressNotification.updateNotification(progress);
 }
Example #3
0
 @Override
 public void onDownloadComplete(int id) {
   progressNotification.clear();
   InstallApk.Install(urlPath, App.getInstance());
 }