I just want to clarify, with the res folders in android, with lower resolution devices, they automatically get the same named asset from the ldpi folder? This is so I can make different assets for smaller screens?
Do I need to have assets in all 4 folders (ldpi – xhdpi) for it to work on all sized devices? Or can I just have assets in one folder if the assets are all the same for all devices?
And what if my assets are only different for low res devices, do I need to mirror the contents of each of the other folders so they all have the same assets in?
I would suggest reading this article thoroughly to get an understanding of exactly how it works, but basically, it will find the closest matching size resource that is available, so no, you don’t need to mirror across all folders necessarily.
From the qualifiers section particularly, this quote explains it well.