Ad Code

How to Change the Android Studio Java Part 4 App Launcher Icon

Table of Contents [Show]


    Hello, everyone is back with uncle duck, this time uncle duck wants to share, so change the icon on the app as below.

    Android is one of the most widely used operating systems today. With the development of Android, many Android application developers are starting to pursue this field. 

    When you create an Android application in Android Studio, the default application icon is the Android icon. But you can also change the application icon by following the tutorial below.


    The first way is for you to first look for the icon that you want to make your app launcher icon, here omg bewok uses the .png format

    Then all you have to do is right-click on it 📁 mipmap folder, then select paste. If you are confused, you can see the picture tutorial below.

    Right click on the mipmap

    Click Paste

    icon_masker.png

    After that, all you have to do is log in 📁 folder manifests -> 📝 file AndroidManifest.xml

    Then change in section 
    android:icon="@mipmap/ic_launcher"
    android:roundIcon="@mipmap/ic_launcher_round"
    To
    android:icon="@mipmap/icon_masker"
    android:roundIcon="@mipmap/icon_masker"

     


    It depends on you giving the name of your icon, OK, here the boy's name is icon_masker.
    After running it is like below.



    Done...!!

    Post a Comment

    0 Comments

    Close Menu