blob: d138917c4290c142bbabb5d0988f1b3472ba809f (
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
|
package ca.allanwang.kau.iitems
import android.support.v7.widget.RecyclerView
import android.view.View
import ca.allanwang.kau.R
import ca.allanwang.kau.utils.bindView
import ca.allanwang.kau.views.CutoutView
import com.mikepenz.fastadapter.items.AbstractItem
/**
* Created by Allan Wang on 2017-06-28.
*
* Just a cutout item with some defaults in [R.layout.kau_iitem_cutout]
*/
class CutoutIItem(val config: CutoutView.() -> Unit = {}) : AbstractItem<CutoutIItem, CutoutIItem.ViewHolder>() {
override fun getType(): Int = R.id.kau_item_cutout
override fun getLayoutRes(): Int = R.layout.kau_iitem_cutout
override fun isSelectable(): Boolean = false
override fun bindView(holder: ViewHolder, payloads: MutableList<Any>?) {
super.bindView(holder, payloads)
with(holder) {
cutout.config()
}
}
override fun unbindView(holder: ViewHolder) {
super.unbindView(holder)
with(holder) {
cutout.drawable = null
cutout.text = "Text" //back to default
}
}
override fun getViewHolder(v: View): ViewHolder = ViewHolder(v)
class ViewHolder(v: View) : RecyclerView.ViewHolder(v) {
val cutout: CutoutView by bindView(R.id.kau_cutout)
}
}
|