Drawable-hdpi, Drawable-mdpi, Drawable-ldpi Android

AndroidImage

Android Problem Overview


I was working on Android 1.5, but I have now moved to the latest version. So there is only one "drawable" folder in Android 1.5, but now there are three different folders for storing images in the Android project.

And I have found some articles for these three folders that says

  1. hdpi means High-dpi
  2. mdpi means medium-dpi
  3. ldpi means low-dpi

But what is the exact purpose of these three folders and when should I use a particular folder to store images in?

Android Solutions


Solution 1 - Android

To declare different layouts and bitmaps you'd like to use for the different screens, you must place these alternative resources in separate directories/folders.

This means that if you generate a 200x200 image for xhdpi devices, you should generate the same resource in 150x150 for hdpi, 100x100 for mdpi, and 75x75 for ldpi devices.

Then, place the files in the appropriate drawable resource directory:

MyProject/
    res/
        drawable-xhdpi/
            awesomeimage.png
        drawable-hdpi/
            awesomeimage.png
        drawable-mdpi/
            awesomeimage.png
        drawable-ldpi/
            awesomeimage.png

Any time you reference @drawable/awesomeimage, the system selects the appropriate bitmap based on the screen's density.

Solution 2 - Android

I got one good solution. Here I have attached it as the image below. So try it. It may be helpful to you...!

Enter image description here

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionParesh MayaniView Question on Stackoverflow
Solution 1 - AndroidNeha ManglaView Answer on Stackoverflow
Solution 2 - AndroidjigarView Answer on Stackoverflow