PlayerAndroid/app/src/main/java/code/name/monkey/retromusic/glide/RetroMusicColoredTarget.kt

60 lines
2.2 KiB
Kotlin
Raw Normal View History

2019-03-03 09:20:15 +00:00
/*
* Copyright (c) 2019 Hemanth Savarala.
*
* Licensed under the GNU General Public License v3
*
* This is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by
* the Free Software Foundation either version 3 of the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*/
2018-11-30 01:06:16 +00:00
package code.name.monkey.retromusic.glide
import android.graphics.drawable.Drawable
import android.widget.ImageView
import code.name.monkey.appthemehelper.util.ATHUtil
import code.name.monkey.retromusic.R
import code.name.monkey.retromusic.glide.palette.BitmapPaletteTarget
import code.name.monkey.retromusic.glide.palette.BitmapPaletteWrapper
import code.name.monkey.retromusic.util.PreferenceUtil
2019-09-22 18:56:40 +00:00
import code.name.monkey.retromusic.util.RetroColorUtil
import com.bumptech.glide.request.animation.GlideAnimation
2018-11-30 01:06:16 +00:00
abstract class RetroMusicColoredTarget(view: ImageView) : BitmapPaletteTarget(view) {
protected val defaultFooterColor: Int
2020-01-24 16:54:08 +00:00
get() = ATHUtil.resolveColor(getView().context, R.attr.colorControlNormal)
2018-11-30 01:06:16 +00:00
protected val albumArtistFooterColor: Int
2020-01-24 16:54:08 +00:00
get() = ATHUtil.resolveColor(getView().context, R.attr.colorControlNormal)
2018-11-30 01:06:16 +00:00
2019-09-22 18:56:40 +00:00
abstract fun onColorReady(color: Int)
override fun onLoadFailed(e: Exception?, errorDrawable: Drawable?) {
super.onLoadFailed(e, errorDrawable)
2018-11-30 01:06:16 +00:00
onColorReady(defaultFooterColor)
}
override fun onResourceReady(
resource: BitmapPaletteWrapper?,
glideAnimation: GlideAnimation<in BitmapPaletteWrapper>?
) {
2018-11-30 01:06:16 +00:00
super.onResourceReady(resource, glideAnimation)
val defaultColor = defaultFooterColor
2019-09-22 18:56:40 +00:00
resource?.let {
onColorReady(
if (PreferenceUtil.getInstance(getView().context).isDominantColor)
RetroColorUtil.getDominantColor(it.bitmap, defaultColor)
else
RetroColorUtil.getColor(it.palette, defaultColor)
)
2019-09-22 18:56:40 +00:00
}
2018-11-30 01:06:16 +00:00
}
}