Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Since which Android version is "drawable-nodpi" supported?

Since which Android version is "drawable-nodpi" supported? Is it safe to put images in "res/drawable-nodpi" and expect them to work in all android version from at least since 2.0(Eclair) and up?

like image 849
Hari Krishna Ganji Avatar asked Feb 13 '13 10:02

Hari Krishna Ganji


People also ask

What is Nodpi in Android?

nodpi : Resources for all densities. These are density-independent resources. The system does not scale resources tagged with this qualifier, regardless of the current screen's density.

What does Nodpi mean?

Android Studio exposes developers to -nodpi and -anydpi in various places. For example, if you use the New Resource Directory wizard thing, and you choose to add a density qualifier to the directory, you will see "No Density" ( -nodpi ) and "Any Density" ( -anydpi ) options.


1 Answers

According to this document there is no "Added in API level X" below nodpi. So it must be supported by all platforms.

like image 141
Yaroslav Mytkalyk Avatar answered Sep 30 '22 17:09

Yaroslav Mytkalyk