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
| class TabComponent @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0, var i: Int = 0, var iconResNormal: Int = 0, var iconResSelect: Int = 0, var textRes: String = "", var mListener: TabComponent.TabSelectListener? = null) : LinearLayout(context, attrs, defStyleAttr), View.OnClickListener {
var icon: ImageView var text: TextView val textColorNormal: Int = R.color.tab_color_unselected val textColorSelect: Int = R.color.tab_color_selected
init { val typedArray = context.obtainStyledAttributes(attrs, R.styleable.TabComponent)
iconResNormal = typedArray.getResourceId(R.styleable.TabComponent_iconNormal, 0) iconResSelect = typedArray.getResourceId(R.styleable.TabComponent_iconSelect, 0) textRes = typedArray.getString(R.styleable.TabComponent_text)
typedArray.recycle()
LayoutInflater.from(context).inflate(R.layout.layout_tab_item, this) icon = findViewById(R.id.tab_item_icon) text = findViewById(R.id.tab_item_text)
text.text = textRes unSelected() }
|