Android Studio : Create custom icons for your application example
Making your own Android applications will not be completed unless you learn how to create, generate and add your own custom icons for your application. This tutorial will teach you how to do just that with Android Studio and the wonderful Android Assets Studio tool.
What is custom app icon? For the uninitiated, something that looks like those icons pointed by the red arrows... rather than the standard green Android logo.
Each project created by Android Studio comes with the standard green Android logo as the project application's icon. To change the icons, navigate to res/mipmap
, right click on mipmap
and navigate to Reveal in Finder
. This will help us in locating the icons location.
and the standard icons revealed!
Head over to Android Asset Studio to generate the icons files that we need. The Android Asset Studio is a WYSIWYG(What You See Is What You Get) online tools that will handle all the dirty work for you.
Click on the Launcher Icon Generator
tab and click on the Image
button such as shown on position 1.
Generate both Square
first and follow by Circle
icons after downloading the zip file at position 2.
REMEMBER to append _round
word for Circle
icons at position 3.
Hit the download button on position 4 to download two zip files. One for Square
icons and another for Circle
icons.
NOTE: You will need to supply your own image for the icon generator. There are plenty of free icons for Android app available for download as well.
Unzip the first zip file, and copy each image files to replace the standard green Android logo icons.
Drag and drop the files from zip file to replace the green Android logo icons. REPEAT for each directory. mipmap-xxxhdpi
, mipmap-xxhdpi
and so on.
and do the same for the _round
icon files as well.
Once you're done, head back to Android Studio and it will automatically refresh to reflect the changes in the icons. If everything goes well, you should see the icons changed.
Hit the Run
button and your application icon should show the custom icon in the Android Virtual Device(emulator)
References:
https://developer.android.com/studio/write/image-asset-studio.html#creating-launcher
See also : Android Studio : Use image as AlertDialog title with custom layout example
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+31.1k Golang : Get local IP and MAC address
+8.8k Golang : io.Reader causing panic: runtime error: invalid memory address or nil pointer dereference
+47.6k Golang : How to convert JSON string to map and slice
+5.7k Golang : Use NLP to get sentences for each paragraph example
+13.3k Golang : Query string with space symbol %20 in between
+8.4k Golang : Progress bar with ∎ character
+6.7k Golang : constant 20013 overflows byte error message
+27.8k Golang : Connect to database (MySQL/MariaDB) server
+15.4k Golang : How to login and logout with JWT example
+13.2k Golang : Read from buffered reader until specific number of bytes
+8.2k Golang : How to check variable or object type during runtime?
+19.1k Golang : Fix cannot download, $GOPATH not set error