no such way available. I’m setting textView.text =...
# getting-started
j
no such way available. I’m setting textView.text = “” but unable to do so for TextColor
k
The API is weird. I have this extension property to work around it:
Copy code
var TextView.textColor: Int
    get() = currentTextColor
    set(value) = setTextColor(value)