How to animate the color of the whole screen (all visible views/layouts) when changing to NightMode in Android?

Viewed 133
2 Answers

Hi I think the best you can do is create a light and dark theme for your app in the style.xml file.

here is a github link of someone who achieved this with a simple code example. there is even a video of how it will look.

it seems like the animation is some android default fade_in/fade_out anim but personally i think it looks nice enough. let me know if this works for you

Related