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
+16.2k Golang : Get IP addresses of a domain name
+5.4k PHP : Convert string to timestamp or datestamp before storing to database(MariaDB/MySQL)
+6.6k Default cipher that OpenSSL used to encrypt a PEM file
+11.1k Golang : Delay or limit HTTP requests example
+25k Golang : Convert long hexadecimal with strconv.ParseUint example
+5.2k Golang : Get S3 or CloudFront object or file information
+8.2k Golang : Add text to image and get OpenCV's X, Y co-ordinates example
+6.9k Golang : Array mapping with Interface
+6.5k Golang : Find the longest line of text example
+4.4k Linux : sudo yum updates not working
+7.1k Golang : Not able to grep log.Println() output
+23.3k Find and replace a character in a string in Go