Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Implementing Designs for Android Customizing the Login Screen Generating 9-Patch Images

My android studio has mipmap instead of drawable, where should i paste the default drawable files

My android studio has mipmap instead of drawable, where should i paste the default drawable files. I tried pasting them in the empty drawable folder but I get an error. How can I work around this? Or how can I fix it? Thank you

2 Answers

EVGENII MAMONTOV
EVGENII MAMONTOV
7,666 Points

Yes, mipmap is a modern replacement for drawable. But to keep it simple I've just created folders like "drawable-hdpi" and so on, and put the pictures there. It worked.

Thanks! But did you create them inside the drawable folder or separately?

EVGENII MAMONTOV
EVGENII MAMONTOV
7,666 Points

Just as with mipmap. So, if there are different files for different screen resolutions, then I create separately drawable-hdpi, drawable-mdpi and all the other folders. If I need only one file, as in the weather application (Stormy), when there is a single XML file for gradient background, then a single "drawable" folder will do.