mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-20 07:39:15 +01:00
Add color accent to dl notifications
This commit is contained in:
parent
abb69921a2
commit
a6ff4f7518
@ -77,6 +77,7 @@ internal class DownloadNotifier(private val context: Context) {
|
|||||||
clearActions()
|
clearActions()
|
||||||
// Open download manager when clicked
|
// Open download manager when clicked
|
||||||
setContentIntent(NotificationHandler.openDownloadManagerPendingActivity(context))
|
setContentIntent(NotificationHandler.openDownloadManagerPendingActivity(context))
|
||||||
|
color = ContextCompat.getColor(context, R.color.colorAccent)
|
||||||
isDownloading = true
|
isDownloading = true
|
||||||
// Pause action
|
// Pause action
|
||||||
addAction(
|
addAction(
|
||||||
@ -127,6 +128,7 @@ internal class DownloadNotifier(private val context: Context) {
|
|||||||
setAutoCancel(false)
|
setAutoCancel(false)
|
||||||
clearActions()
|
clearActions()
|
||||||
// Open download manager when clicked
|
// Open download manager when clicked
|
||||||
|
color = ContextCompat.getColor(context, R.color.colorAccent)
|
||||||
setContentIntent(NotificationHandler.openDownloadManagerPendingActivity(context))
|
setContentIntent(NotificationHandler.openDownloadManagerPendingActivity(context))
|
||||||
isDownloading = true
|
isDownloading = true
|
||||||
// Pause action
|
// Pause action
|
||||||
@ -162,6 +164,7 @@ internal class DownloadNotifier(private val context: Context) {
|
|||||||
setSmallIcon(R.drawable.ic_pause_24dp)
|
setSmallIcon(R.drawable.ic_pause_24dp)
|
||||||
setAutoCancel(false)
|
setAutoCancel(false)
|
||||||
setProgress(0, 0, false)
|
setProgress(0, 0, false)
|
||||||
|
color = ContextCompat.getColor(context, R.color.colorAccent)
|
||||||
clearActions()
|
clearActions()
|
||||||
// Open download manager when clicked
|
// Open download manager when clicked
|
||||||
setContentIntent(NotificationHandler.openDownloadManagerPendingActivity(context))
|
setContentIntent(NotificationHandler.openDownloadManagerPendingActivity(context))
|
||||||
@ -195,6 +198,7 @@ internal class DownloadNotifier(private val context: Context) {
|
|||||||
with(notification) {
|
with(notification) {
|
||||||
setContentTitle(context.getString(R.string.downloads))
|
setContentTitle(context.getString(R.string.downloads))
|
||||||
setContentText(reason)
|
setContentText(reason)
|
||||||
|
color = ContextCompat.getColor(context, R.color.colorAccent)
|
||||||
setSmallIcon(android.R.drawable.stat_sys_warning)
|
setSmallIcon(android.R.drawable.stat_sys_warning)
|
||||||
setAutoCancel(true)
|
setAutoCancel(true)
|
||||||
clearActions()
|
clearActions()
|
||||||
|
Loading…
Reference in New Issue
Block a user