aboutsummaryrefslogtreecommitdiff
path: root/kpref-activity/src/main/kotlin/ca/allanwang/kau/kpref/activity/items/KPrefPlainText.kt
blob: b83df69f83c5e1a064b6b7e83a9d378f01ef5ebf (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
package ca.allanwang.kau.kpref.activity.items

import android.view.View
import ca.allanwang.kau.kpref.activity.GlobalOptions
import ca.allanwang.kau.kpref.activity.R

/**
 * Created by Allan Wang on 2017-06-14.
 *
 * Just text with the core options. Extends base preference but has an empty getter and setter
 * Useful replacement of [KPrefText] when nothing is displayed on the right side,
 * and when the preference is completely handled by the click
 *
 */
open class KPrefPlainText(val builder: KPrefPlainTextBuilder) : KPrefItemBase<Unit>(builder) {

    override fun defaultOnClick(itemView: View, innerContent: View?): Boolean {
        //nothing
        return true
    }

    class KPrefPlainTextBuilder(
            globalOptions: GlobalOptions,
            titleRes: Int
    ) : BaseContract<Unit> by BaseBuilder(globalOptions, titleRes, {}, {})

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

}