Android drawable folder description, androiddrawable
Some people will certainly be curious about the places where images are placed in android, such as drawable-hdpi, drawable-mdpi, and drawable-ldpi.
You will surely think about which one you can store, as long as it is in drawable under the res directory in android, and the system will find it on its own.
A friend with a heart will surely give him an answer. I used to know about drawable-hdpi, drawable-mdpi, and drawable-ldpi, but I did not really understand it, today, I have a deep understanding.
Drawable-hdpi: When you look at his word name, you must know that he is placing a high-resolution image, drawable-mdpi placing a medium-resolution image, and drawable-ldpi placing a low-resolution image.
Most people put the images in drawable-mdpi. At first, I thought it would be good to place any of the three images, but today I know.
When the resolution is lower than 480*800, placing the image in the drawable-mdpi will not affect the image, but when the resolution is 420*800 or higher than it will cause problems.
The screen on your mobile phone is so big but it will stretch the picture. When you load the picture, it makes you feel that the screen has no actual size, this problem does not exist if you place images in drawable-hdpi.