Reputation: 91
What size of image should I put into drawable folder which is not drawable - ldpi, hpi, mdpi, xhdpi,xxhdpi, xxxhdpi? Or do I still need the drawable folder?
Upvotes: 6
Views: 1858
Reputation: 2455
Yes, we still need drawable folder. All the folders you mentioned help android app to store different density images according to their density but when you access them into your app system will select the appropriate image based on the screen's API.
You could also follow documentation for further details here.
Upvotes: 3