how to change color text in Koltin code example
Example 1: android kotlin change text color
// Android kotlin changing text color
// like this
android:textColor="#454545"
Example 2: how to change color text in Koltin
// like this
android:textColor="@color/red"
//or programmtically
textView.textColor = Color.RED