Elad Benda
Elad Benda

Reputation: 36656

which android folder to resource of night mode, v21+? drawable-night-v21?

I know I can add resources for some Android versions + for night mode.

But what would be the name of the folder for night mode resources of API 21+ ?

drawable-night-v21?

Upvotes: 7

Views: 2447

Answers (1)

CommonsWare
CommonsWare

Reputation: 1006614

That should be correct. Based on the legendary "Table 2":

  • night is the qualifier for night mode
  • v21 is the qualifier for API Level 21+ devices
  • night appears higher in Table 2 than does v21, so night appears first in the directory name

So, -night-v21 would be the suffix for any resource directory in which you will have night mode resources to be used on API Level 21+ devices.

Upvotes: 6

Related Questions