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 trialJake barnly
177 PointsHow to create your own drawable icons
How would I got about creating my own icons for android? I think it would be really cool to make my own.
2 Answers
Jack Middlebrook
19,746 PointsCheck out the Android Asset Studio: http://romannurik.github.io/AndroidAssetStudio/
Danial Goodwin
13,247 PointsAs Jack Middlebrook mentioned, the Android Asset Studio is a really great tool for speedy drawables.
Also, you can use any image editor to create image assets that will work in Android. For example, take a look at the source files for any of the default drawables in your project, like ic_launcher
. You can open that file in any image editor, edit it, save your changes, then see the changes the next time your run your app. But, note that there may be up to four images that you have to replace if you change one: MDPI, HDPI, XHDPI, XXHDPI.
Android also includes support for other types of images that you can create through code!
There are many different ways to add a Drawable
to an app, here's some more info: