Changing text color android

How to change Text Color of TextView in Android?

Android TextView – Text Color

TextView Text Color – To change the color of text in TextView, you can set the color in layout XML file using textColor attribute or change the color dynamically in Kotlin file using setTextColor() method.

In this tutorial, we will learn both the layout file approach and Kotlin line approach to change the text color of TextView.

Change Text Color of TextView via XML Layout File

textColor attribute of TextView widget lets you set a color of your choice. You can provide the color as hex value in one of the four formats: rgb, argb, rrggbb, or aarrggbb.

The syntax to set textColor attribute for TextView using different color formats is

Example 1 – TextView Color

Let us create an Android application with Kotlin support in Android Studio and change the text color of TextView in XML layout file.

activity_main.xml

We have used a string resource, and the contents of strings.xml is

There is no need to change the MainActivity.kt file. The default code would do.

MainActivity.kt

Run this application, and you would get the following screenshot.

Change Text Color of TextView in Kotlin File

We can get the reference to TextView widget present in layout file and change the color dynamically with Kotlin code.

Читайте также:  Камера эндоскоп для андроид водонепроницаемую

To set the color to the TextView widget, call setTextColor() method on the TextView widget reference with specific color passed as argument.

setTextColor() method takes int as argument. Use android.graphics.Color class to get an integer for a given color. You can provide the color as hex value in one of the four formats: rgb, argb, rrggbb, or aarrggbb.

The syntax to set text color using setTextColor() method of TextView in Kotlin Activity file is

Example 2 – TextView Color

Let us create an Android application with Kotlin support in Android Studio and change the text color of TextView dynamically/programmatically in Kotlin file.

The layout file contains a TextView. Since we are about to change the text color in Kotlin file, no text color is specified in layout XML file.

activity_main.xml

We have used a string resource, and the contents of strings.xml is

We have got the reference to the TextView in layout file using findViewById() method. Call to setTextColor() method on the TextView reference would set the text color of TextView.

MainActivity.kt

Run this application, and you would get the following screenshot.

Conclusion

In this Kotlin Android Tutorial, we learned how to set or change the text/font color of TextView widget in Android application.

Источник

Оцените статью