Twidere-App-Android-Twitter.../twidere/src/main/kotlin/org/mariotaku/ktextension/TextViewExtensions.kt

13 lines
325 B
Kotlin

package org.mariotaku.ktextension
import android.graphics.Typeface
import android.widget.TextView
val TextView.empty: Boolean
get() = length() <= 0
fun TextView.applyFontFamily(lightFont: Boolean) {
if (lightFont) {
typeface = Typeface.create("sans-serif-light", typeface?.style ?: Typeface.NORMAL)
}
}