I followed the following steps as suggested by the tutorials and other questions:
- android: icon = "@ mipmap / ic_launcher" in the manifest, where the application icon is called ic_launcher, and all the mip cards have been appropriately replaced based on permission
- replaced all mipmap images with images generated from Android Asset Studio
- I selected the appropriate files in the image asset by right-clicking on Res.
- I uninstalled the old application. Rebuild the application and run
- I invalidated the cache and restarted Android Studio too
- Restarted mobile
- An image of 512 * 512 pixels has also been added to the image resource.
The problem I suspect is that when starting an asset of an image, the default is to use a clipart, not an image. Thus, every time the application starts, it can select the default icon with the image.
I also saved the application icon in the toolbar. This sometimes changes. If the application starts again, it will change to the default green Android icon.
I have a new android studio 2.1. So are there any problems with this in this regard?
source share