Skip to content

Instantly share code, notes, and snippets.

View francislainy's full-sized avatar

Francislainy Campos francislainy

View GitHub Profile
@pjonceski
pjonceski / MyTabLayout.kt
Last active November 15, 2021 12:31
Custom views at TabLayout with custom text style and indicator at selected tab
class MyTabLayout : TabLayout {
private val mTitles: MutableList<String> = arrayListOf()
private var mUnselectedTypeFace: Typeface? = null
constructor(context: Context?) : super(context) {
init(context, null)
}
constructor(context: Context?, attrs: AttributeSet?) : super(context, attrs) {
init(context, attrs)