I read Q&A on how to structure the values folder for multiple screens densities for example here, however I cannot seem to understand what is the difference between these two cases for instance:
Case 1:
res/values-sw320dp-hdpi/dimens.xml
res/values-sw320dp-xhdpi/dimens.xml
res/values-sw320dp-xxhdpi/dimens.xml
res/values-sw320dp-xxxhdpi/dimens.xml
res/values-sw480dp-hdpi/dimens.xml
res/values-sw480dp-xhdpi/dimens.xml
res/values-sw480dp-xxhdpi/dimens.xml
res/values-sw480dp-xxxhdpi/dimens.xml
...ect
Case 2:
res/values-sw320dp/dimens.xml
res/values-sw480dp/dimens.xml
res/values-sw600dp/dimens.xml
res/values-sw720dp/dimens.xml
Question: How big of a difference does it make to use or not use the suffix mdpi/hdpi/xhpi/xxhpdi
in folder architecture?