Add icon to the Android application from Android Studio IDE
H ello everyone! this is my first article that i’ve wrote and i want to share the easiest way to adding icon to the Android application in 2020. FYI, i’m using React Native to build my own Android application. To add icon to the Android application, I use the IDE from Android Studio. This IDE is awesome, a lot of tool belong here that you can use for free.
FYI, i’m using the following version
- React Native (Version: 0.61.5)
- React Native CLI (Version: 2.0.1)
- Android Studio (Version: 3.5)
The Steps
Make sure you have to prepare the icon file that you want to add to your Android application.
Make sure your Android application has been compiled or run.
Open your Android Studio IDE application.
Right click to the folder res, New and Image Asset. You can see the full explanation from the image below
The Image Asset page will guide you to the page like as follows. Then click on the red mark to select your own application icon.
If you are successfully choosing your own selected icon, then the default icon on the Image Asset page will be changed. Then, you maybe need to adjust the size of the icon and then click Next.
The new page will be shown like below, and then click Finish button.
Build -> Clean Project.
Build -> Build APK.
APK build file is already finished, time to install the APK file to the device.
Как изменить стандартную иконку Апк приложенния сделанного на Android Studio?
Покажите как изменить иконку на примере .
- Вопрос задан более трёх лет назад
- 24012 просмотров
- Вконтакте

- Вконтакте
Добавить в папку drawable нужное изображение и в файле Manifest прописать путь android:icon=»@drawable/название_изображения»
Как изменить иконку приложения в android studio
In order to get the app published in stores like Google Play Store, Amazon App Store, etc, or if you just want to personalize the app, the default icon can be changed.

We can change the icon of the Android App by using Android Studio itself and by following the below steps:
Step 1: Create Android Studio Project
Open your Android Studio Project and make sure that your project is of the type Android. If it is not Android then select Android from the drop-down list. This is not necessary but will make it easier to search for the files and directories needed.

Step 2: Now click on the App Directory
Click on the res folder then the mipmap folder.

Step 3: Make sure that the Image of the Icon is already Present on the Computer.
Find the path of the image. Here, the file named gfgLogo is present in our Downloads folder. If we can’t find an icon for our app and also are unable to design one, then we can look for them in Flaticon or Material.io. However, we must note that the former has icons designed by other designers and we need to give attribution to the respective designer when using it.

Step 4: Import Image Asset
Now once we have our icon at the desired location and we know the path, right-click on the mipmap directory and then click on New and choose Image Asset from the drop-down menu. The order of actions would be: mipmap(Right-click) > New > Image Asset

Step 5: Now the following window will open once we click on Image Asset

Step 6: Resizing the Image Icon
If required, the image can be resized using the Resize option or change the color of our logo by heading to the Background Layer option. Once all the required changes are made, we will click on the Next button and then on Finish and then the icon of the app will be changed!
How do you change the launcher logo of an app in Android Studio?
I was wondering how to change the launcher icon in Android Studio.
17 Answers 17
Here is another solution which I feel is more sensible for those working on Android Studio:
- Expand the project root folder in the Project View
- Right Click on the app folder
- In the Context Menu go to New->Image Asset
- In the pop up that appears select the the new logo you would like to have(image/clip art/text).
- If you were selecting the image radio button (as is the default choice), if you clicked on the 3-buttons to show the path tree to locate your .png image file, most probably you might not be seeing it, so drag it from the Windows Explorer (if Windows) and drop it in the tree, and it will appear and ready for being selected.
That is it! You have a new logo for you app now.
Look in the application’s AndroidManifest.xml file for the <application> tag.
This application tag has an android:icon attribute, which is usually @drawable/ic_launcher . The value here is the name of the launcher icon file. If the value is @drawable/ic_launcher , then the name of the icon is ic_launcher.png .
Find this icon in your resource folders ( res/mipmap-mdpi , res/mipmap-hdpi , etc.) and replace it.
A note on mipmap resources: If your launcher icon is currently in drawable folders such as res/drawable-hdpi , you should move them to the mipmap equivalents (e.g. res/mipmap-hdpi ). Android will better preserve the resolution of drawables in the mipmap folder for display in launcher applications.
Android Studio note: If you are using Android Studio you can let studio place the drawables in the correct place for you. Simply right click on your application module and click New -> Image Asset.
For the icon type select either «Launcher Icons (Legacy Only)» for flat PNG files or «Launcher Icons (Adaptive and Legacy)» if you also want to generate an adaptive icon for API 26+ devices.