6
votes

Image Sample

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?

1
Yes. That drawable folder is used for xml files. like custom backgrounds, shapes, etcDeepak kaku
Then may I know whats the size and dpi of image should i use in that drawable folder? @DeepakkakuKhar Fai Mak
We don't put actual images in drawable folderDeepak kaku

1 Answers

3
votes

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.

enter image description hereYou could also follow documentation for further details here.