mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-02-17 12:30:07 +03:00
avoiding nullable param and supplying a range for the tint alpha
This commit is contained in:
parent
3866cfeabc
commit
f8e65f5872
1 changed files with 4 additions and 3 deletions
|
@ -21,6 +21,7 @@ import android.graphics.drawable.Drawable
|
||||||
import androidx.annotation.ColorInt
|
import androidx.annotation.ColorInt
|
||||||
import androidx.annotation.ColorRes
|
import androidx.annotation.ColorRes
|
||||||
import androidx.annotation.DrawableRes
|
import androidx.annotation.DrawableRes
|
||||||
|
import androidx.annotation.FloatRange
|
||||||
import androidx.core.content.ContextCompat
|
import androidx.core.content.ContextCompat
|
||||||
import dagger.hilt.EntryPoints
|
import dagger.hilt.EntryPoints
|
||||||
import im.vector.app.core.di.SingletonEntryPoint
|
import im.vector.app.core.di.SingletonEntryPoint
|
||||||
|
@ -30,15 +31,15 @@ fun Context.singletonEntryPoint(): SingletonEntryPoint {
|
||||||
return EntryPoints.get(applicationContext, SingletonEntryPoint::class.java)
|
return EntryPoints.get(applicationContext, SingletonEntryPoint::class.java)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Context.getResTintedDrawable(@DrawableRes drawableRes: Int, @ColorRes tint: Int, alpha: Float? = null): Drawable? {
|
fun Context.getResTintedDrawable(@DrawableRes drawableRes: Int, @ColorRes tint: Int, @FloatRange(from = 0.0, to = 1.0) alpha: Float = 1f): Drawable? {
|
||||||
return getTintedDrawable(drawableRes, ContextCompat.getColor(this, tint), alpha)
|
return getTintedDrawable(drawableRes, ContextCompat.getColor(this, tint), alpha)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Context.getTintedDrawable(@DrawableRes drawableRes: Int, @ColorInt tint: Int, alpha: Float? = null) = ContextCompat.getDrawable(this, drawableRes)
|
fun Context.getTintedDrawable(@DrawableRes drawableRes: Int, @ColorInt tint: Int, @FloatRange(from = 0.0, to = 1.0) alpha: Float = 1f) = ContextCompat.getDrawable(this, drawableRes)
|
||||||
?.mutate()
|
?.mutate()
|
||||||
?.also { drawable ->
|
?.also { drawable ->
|
||||||
drawable.setTint(tint)
|
drawable.setTint(tint)
|
||||||
alpha?.let {
|
alpha.let {
|
||||||
drawable.alpha = it.toAndroidAlpha()
|
drawable.alpha = it.toAndroidAlpha()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue