nodpi
These are density-independent resources. The system does not scale resources tagged with this qualifier, regardless of the current screen’s density.
For instance:
- drawable-nodpi/dot.png
The dot will appear small on xxhdpi, big on ldpi.
However, the resource resolver will match a specific qualifier if it exists.
For instance
- drawable-hdpi/eg.png
- drawable-nodpi-v21/eg.xml
On a Lollipop (API 21) hdpi device, the bitmap is used.
On a Lollipop (API 21) xhdpi device, the vector is used.
anydpi
These resources take precedence in any dpi.
For instance
- drawable-hdpi/eg.png
- drawable-anydpi-v21/eg.xml
On a Lollipop (API 21) hdpi device, the vector is used.
On a Lollipop (API 21) xhdpi device, the vector is used.
Reference
Note: anydpi was added in change Ic3288d0236fe0bff20bb1599aba2582c25b0db32.