Android Application Icon Not Showing Up

Android application icon not showing up

  1. Make sure the icon is stored with the name icon.png in those folders.
  2. Make sure android has a drawable/icon resource. Check this by looking at your gen/R.java file and seeing public static final int icon = 0x.... in the drawable inner class.
  3. Try cleaning your project build and uninstalling any existing version of your app from your phone/emulator and then reinstall the new version.

My app icon is not showing on some devices

Try This;

File -> New -> Image Asset -> Launcher Icons (Adaptive and Legacy)

For more information;
https://proandroiddev.com/android-adaptive-icons-are-easier-than-you-think-3c66be2dd4dd

https://developer.android.com/guide/practices/ui_guidelines/icon_design_adaptive

Icon not shown in launcher

Remove

<intent-filter>
<action android:name="android.intent.action.LOGIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

Replace with

<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

Why is the Android App Icon not coming up in App Info and Clear Tasks?

The fix for the issue is:

  1. Change the default icon to the new app logo at both android:icon="@mipmap/ic_launcher" and android:roundIcon="@mipmap/ic_launcher_round"
  2. Try Clean Build, uninstall and re-install the app.

Thanks for all the comments.

Android app icon not showing in some devices

try delete mipmap-anydpi-v26 folder

Android app icon missing in recents but present everywhere else

It's stupid -- but restarting the emulator fixes it. If your app icon is showing up everywhere else then it's not a problem with your app so don't worry about it.



Related Topics



Leave a reply



Submit