mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
0a509cb382
Doesn't work properly in API < 23
64 lines
2.2 KiB
Kotlin
64 lines
2.2 KiB
Kotlin
package eu.kanade.tachiyomi.widget
|
|
|
|
import android.graphics.drawable.Drawable
|
|
import android.view.View
|
|
import android.widget.ImageView
|
|
import android.widget.ImageView.ScaleType
|
|
import androidx.vectordrawable.graphics.drawable.VectorDrawableCompat
|
|
import com.bumptech.glide.request.target.ImageViewTarget
|
|
import com.bumptech.glide.request.transition.Transition
|
|
import eu.kanade.tachiyomi.R
|
|
import eu.kanade.tachiyomi.util.system.getResourceColor
|
|
import eu.kanade.tachiyomi.util.view.gone
|
|
import eu.kanade.tachiyomi.util.view.visible
|
|
|
|
/**
|
|
* A glide target to display an image with an optional view to show while loading and a configurable
|
|
* error drawable.
|
|
*
|
|
* @param view the view where the image will be loaded
|
|
* @param progress an optional view to show when the image is loading.
|
|
* @param errorDrawableRes the error drawable resource to show.
|
|
* @param errorScaleType the scale type for the error drawable, [ScaleType.CENTER] by default.
|
|
*/
|
|
class StateImageViewTarget(
|
|
view: ImageView,
|
|
val progress: View? = null,
|
|
private val errorDrawableRes: Int = R.drawable.ic_broken_image_grey_24dp,
|
|
private val errorScaleType: ScaleType = ScaleType.CENTER
|
|
) : ImageViewTarget<Drawable>(view) {
|
|
|
|
private var resource: Drawable? = null
|
|
|
|
private val imageScaleType = view.scaleType
|
|
|
|
override fun setResource(resource: Drawable?) {
|
|
view.setImageDrawable(resource)
|
|
}
|
|
|
|
override fun onLoadStarted(placeholder: Drawable?) {
|
|
progress?.visible()
|
|
super.onLoadStarted(placeholder)
|
|
}
|
|
|
|
override fun onLoadFailed(errorDrawable: Drawable?) {
|
|
progress?.gone()
|
|
view.scaleType = errorScaleType
|
|
|
|
val vector = VectorDrawableCompat.create(view.context.resources, errorDrawableRes, null)
|
|
vector?.setTint(view.context.getResourceColor(R.attr.colorOnBackground, 0.38f))
|
|
view.setImageDrawable(vector)
|
|
}
|
|
|
|
override fun onLoadCleared(placeholder: Drawable?) {
|
|
progress?.gone()
|
|
super.onLoadCleared(placeholder)
|
|
}
|
|
|
|
override fun onResourceReady(resource: Drawable, transition: Transition<in Drawable>?) {
|
|
progress?.gone()
|
|
view.scaleType = imageScaleType
|
|
super.onResourceReady(resource, transition)
|
|
this.resource = resource
|
|
}
|
|
}
|