I'm using Android Studio, and I always see people's drawable calls to things like ic_launcher. I don't have any of these files - hell, where are they even stored? All of my few files begin with abc_ic. How would I go about getting the icons, and where would I put them?
How do I get the Android Icons in Android Studio?
5.5k Views Asked by danishanish At
3
There are 3 best solutions below
1

The Android asset studio is a great tool for things like this. It will generate icons for all the main DPIs. It can be found here: https://romannurik.github.io/AndroidAssetStudio/icons-launcher.html
abc_
areActionBarCompat
stuff. It's used by ActionBarCompat. For instance, you'll find the overflow icon there (the vertical dots indicating the menu).Then there is
android:drawable/
that contains the system stuff, not always convenient because it varies a lot from a version to another.Finally, there is https://github.com/google/material-design-icons/ Pretty much all icons ever mentioned in material design are there, in black and white, in all sort of size, and for all densities.