Khar Fai Mak
Khar Fai Mak

Reputation: 91

Do we still need drawable folder in Android Resources if already have drawable - hpi, mdpi, xhdpi,xxhdpi, xxxhdpi

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?

Upvotes: 6

Views: 1858

Answers (1)

Prashant Abdare
Prashant Abdare

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.

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

Upvotes: 3

Related Questions