|
|
@ -58,7 +58,7 @@ class CacheBookService : BaseService() { |
|
|
|
intent.getIntExtra("end", 0) |
|
|
|
intent.getIntExtra("end", 0) |
|
|
|
) |
|
|
|
) |
|
|
|
IntentAction.remove -> removeDownload(intent.getStringExtra("bookUrl")) |
|
|
|
IntentAction.remove -> removeDownload(intent.getStringExtra("bookUrl")) |
|
|
|
IntentAction.stop -> stopDownload() |
|
|
|
IntentAction.stop -> stopSelf() |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
return super.onStartCommand(intent, flags, startId) |
|
|
|
return super.onStartCommand(intent, flags, startId) |
|
|
@ -97,13 +97,6 @@ class CacheBookService : BaseService() { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private fun stopDownload() { |
|
|
|
|
|
|
|
CacheBook.cacheBookMap.forEach { |
|
|
|
|
|
|
|
it.value.waitDownloadSet.clear() |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
stopSelf() |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private fun upNotificationContent() { |
|
|
|
private fun upNotificationContent() { |
|
|
|
notificationContent = |
|
|
|
notificationContent = |
|
|
|
"正在下载:${CacheBook.onDownloadCount}/等待中:${CacheBook.waitDownloadCount}/成功:${CacheBook.successDownloadCount}" |
|
|
|
"正在下载:${CacheBook.onDownloadCount}/等待中:${CacheBook.waitDownloadCount}/成功:${CacheBook.successDownloadCount}" |
|
|
|