aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/views/BadgedIcon.kt
blob: 8093c8526bb518d1d983dc8aab6ad60d8fbd058e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package com.pitchedapps.frost.views

import android.content.Context
import android.graphics.drawable.GradientDrawable
import androidx.constraintlayout.widget.ConstraintLayout
import android.util.AttributeSet
import ca.allanwang.kau.utils.*
import com.mikepenz.iconics.typeface.IIcon
import com.pitchedapps.frost.R
import com.pitchedapps.frost.utils.Prefs
import kotlinx.android.synthetic.main.view_badged_icon.view.*


/**
 * Created by Allan Wang on 2017-06-19.
 */
class BadgedIcon @JvmOverloads constructor(
        context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0
) : ConstraintLayout(context, attrs, defStyleAttr) {

    init {
        inflate(context, R.layout.view_badged_icon, this)
        val badgeColor = Prefs.mainActivityLayout.backgroundColor().withAlpha(255).colorToForeground(0.2f)
        val badgeBackground = GradientDrawable(GradientDrawable.Orientation.BOTTOM_TOP, intArrayOf(badgeColor, badgeColor))
        badgeBackground.cornerRadius = 13.dpToPx.toFloat()
        badge_text.background = badgeBackground
        badge_text.setTextColor(Prefs.mainActivityLayout.iconColor())
    }

    var iicon: IIcon? = null
        set(value) {
            field = value
            badge_image.setImageDrawable(value?.toDrawable(context, sizeDp = 20, color = Prefs.mainActivityLayout.iconColor()))
        }

    fun setAllAlpha(alpha: Float) {
        //badgeTextView.setTextColor(Prefs.textColor.withAlpha(alpha.toInt()))
        badge_image.drawable.alpha = alpha.toInt()
    }

    var badgeText: String?
        get() = badge_text.text.toString()
        set(value) {
            if (badge_text.text == value) return
            badge_text.text = value
            if (value != null && value != "0") badge_text.visible()
            else badge_text.gone()
        }

}