Doubt about images on Android

Asked

Viewed 34 times

-1

images should be in the drawable or mipmap folder in my Android project?

I’ve been using the mipmap folder. There is some difference in using these folders in an Android project?

1 answer

2


According to a blogpost do Google:

It’s best Practice to place your app icons in mipmap- folders (not the drawable- folders) because they are used at resolutions Different from the device’s Current Density.

That is, It is a good practice to use the mipmap folder exclusively to place the icons that will be used in the application. Any other image Asset should be placed in the drawable folder.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.