aboutsummaryrefslogtreecommitdiff
path: root/library/src/main/kotlin/ca/allanwang/kau/kpref/items/KPrefText.kt
blob: 52e9614c514007d4a9e938952f26e14a348c20a1 (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
package ca.allanwang.kau.kpref.items

import android.support.annotation.StringRes
import android.view.View
import android.widget.TextView
import ca.allanwang.kau.R
import ca.allanwang.kau.kpref.KPrefAdapterBuilder
import ca.allanwang.kau.utils.toast

/**
 * Created by Allan Wang on 2017-06-14.
 *
 * Text preference
 * Holds a textview to display data on the right
 * This is still a generic preference
 *
 */
class KPrefText<T>(builder: KPrefAdapterBuilder,
                   @StringRes title: Int,
                   coreBuilder: KPrefItemCore.Builder.() -> Unit = {},
                   itemBuilder: Builder<T>.() -> Unit = {},
                   val textGetter: (T) -> String? = { it?.toString() }
) : KPrefItemBase<T>(builder, title, coreBuilder, itemBuilder) {

    override fun defaultOnClick(itemView: View, innerContent: View?): Boolean {
        itemView.context.toast("No click function set")
        return true
    }

    override fun onPostBindView(viewHolder: ViewHolder, textColor: Int?, accentColor: Int?) {
        super.onPostBindView(viewHolder, textColor, accentColor)
        val textview = viewHolder.bindInnerView<TextView>(R.layout.kau_preference_text)
        if (textColor != null) textview.setTextColor(textColor)
        textview.text = textGetter.invoke(pref)
    }

    override fun getType(): Int = R.id.kau_item_pref_checkbox

}