-
-
Save nicemak/81a4619089520abdd6ed104d9179e77a to your computer and use it in GitHub Desktop.
Observe Download manager progress using LiveData and Coroutine #android #kotlin #livedata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data class DownloadItem( | |
val bytesDownloadedSoFar: Long = -1, | |
val totalSizeBytes: Long = -1, | |
val status: Int, | |
val uri: String | |
) | |
class DownloadProgressLiveData(private val activity: Activity) : | |
LiveData<List<DownloadItem>>(), | |
CoroutineScope { | |
private val downloadManager by lazy { | |
activity.getSystemService(Context.DOWNLOAD_SERVICE) as DownloadManager | |
} | |
private val job = Job() | |
override val coroutineContext: CoroutineContext | |
get() = Dispatchers.IO + job | |
override fun onActive() { | |
super.onActive() | |
launch { | |
while (isActive) { | |
val query = DownloadManager.Query() | |
val cursor = downloadManager.query(query) | |
val list = mutableListOf<DownloadItem>() | |
while (cursor.moveToNext()) { | |
when (val status = cursor.getInt(cursor.getColumnIndex(DownloadManager.COLUMN_STATUS))) { | |
DownloadManager.STATUS_PENDING, | |
DownloadManager.STATUS_RUNNING, | |
DownloadManager.STATUS_PAUSED -> with(cursor) { | |
getInt(getColumnIndex(DownloadManager.COLUMN_TOTAL_SIZE_BYTES)) | |
val uri = getString(getColumnIndex(DownloadManager.COLUMN_URI)) | |
val bytesDownloadedSoFar = | |
getInt(getColumnIndex(DownloadManager.COLUMN_BYTES_DOWNLOADED_SO_FAR)) | |
val totalSizeBytes = | |
getInt(getColumnIndex(DownloadManager.COLUMN_TOTAL_SIZE_BYTES)) | |
list.add( | |
DownloadItem( | |
bytesDownloadedSoFar.toLong(), | |
totalSizeBytes.toLong(), | |
status, | |
uri | |
) | |
) | |
} | |
} | |
} | |
postValue(list) | |
delay(300) | |
} | |
} | |
} | |
override fun onInactive() { | |
super.onInactive() | |
job.cancel() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment