ribesg
05/02/2016, 2:32 PMvar ViewGroup.typeface: Typeface
get() = throw PropertyWithoutGetterException("typeface")
set(v) {
childrenSequence().forEach { child ->
if (child is TextView) {
child.typeface = v
} else if (child is ViewGroup) {
child.typeface = v
}
}
}