4
After Google started adding Mipmaps I ended up not researching exactly why. Even with this addition, it does not prevent anything from using the Drawable as before.
Before
res/
drawable-mdpi/ic_launcher.png (48x48 pixels)
drawable-hdpi/ic_launcher.png (72x72)
drawable-xhdpi/ic_launcher.png (96x96)
drawable-xxhdpi/ic_launcher.png (144x144)
drawable-xxxhdpi/ic_launcher.png (192x192)
Today
res/
drawable/
mipmap-mdpi/ic_launcher.png (48x48 pixels)
mipmap-hdpi/ic_launcher.png (72x72)
mipmap-xhdpi/ic_launcher.png (96x96)
mipmap-xxhdpi/ic_launcher.png (144x144)
mipmap-xxxhdpi/ic_launcher.png (192x192)
Even seeing some questions, I still don’t understand exactly what the real meaning of having these changes was. In old applications still remain drawable and apparently they are unchanged and continue with the same purpose.
In the project
I did a little research and found some answers, but not so satisfying.
What’s the real difference between Mipmap and Drawable? When should I wear Mipmap? Is there any limitation if I use Drawable?
I once had a problem with a png with transparency, which was in the folder drawable, She did not press the phone (in the editor appeared).. After investigating I saw that I had to change to the mipmap folder, I just moved and it worked, but I also do not know why, so it goes +1 to question..
– Marco Giovanni