Android Icons
Creating Adaptive Icons for Android.
Android Adaptive Icons
Android uses Adaptive Icons which consist of two layers: a foreground and a background.
How it works
- Foreground: This should be your logo with a transparent background.
- Background: A solid color or a texture image.
AppIconGenerator helps you combine these to see how they will look when masked by different shapes (circle, squircle, rounded square).
Output Format
We generate the standard resource directory structure:
mipmap-mdpimipmap-hdpimipmap-xhdpimipmap-xxhdpimipmap-xxxhdpi
And the ic_launcher.xml and ic_launcher_round.xml definitions for API 26+.
How to use in Android Studio
- Unzip the downloaded file.
- Copy the
resfolder contents into your project'sapp/src/main/res/directory. - Ensure your
AndroidManifest.xmlrefers to@mipmap/ic_launcherand@mipmap/ic_launcher_round.
AppIconGenerator Docs