Skip to content
Advertisement

Android Colors in Dark Mode

Hello fellow developers.

I’ve developed and Android App using Android Studio, but I only took into account the layout themes for light mode. Here’s how it looks:

light mode

So now, when I switch my phone to dark mode, this happens:

dark mode

How can I change the colors that are being displayed in dark mode?

Advertisement

Answer

In res/values/colors
There are two colors
colors.xml
colors.xml(night)


If night does not exist, you can make it as follows:
Right click on the values folder.
Next New. Then Values Resource file
Enter the colors in the file name field
And enter the values-night in the directory name field.


In colors.xml, select the colors that are for the light, such as:

JavaScript

In colors.xml(night), set the colors for the night(Same name as colors):

JavaScript

Now if in layout, for example:

JavaScript

It is selected according to what you put in the light and night colors.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement