简体   繁体   English

启动器图标已更改,但在最近的应用程序中仍然是我看到的默认图标

[英]Launcher icon is changed but in recent apps still default icon i seen

I have changed the launcher icons in File -> New -> Image Asset and the icons are changed. 我更改了文件 - >新建 - >图像资源中的启动器图标,图标也发生了变化。

When I click on recent apps icon in it displays the default icon where as correct icon is shown in the main icon list. 当我点击最近的应用程序图标时,它会显示默认图标,其中正确的图标显示在主图标列表中。

Verified the Android manifest where application tag contain the icon tag and corresponding mipmap. 验证了Android清单,其中应用程序标记包含图标标记和相应的mipmap。

What's wrong here? 这有什么不对? I am using xiaomi note 4 mobile. 我正在使用xiaomi note 4 mobile。 Please help. 请帮忙。

The app icon in the app launcher should be updated, but the shortcuts won't be updated until the next refresh of the home-screen. 应用程序启动器中的应用程序图标应该更新,但在下次刷新主屏幕之前不会更新快捷方式。 There isn't much you can do that unfortunately, but the home-screen does refresh itself once in a while, so the new icon will eventually replace the old icon automatically. 不幸的是,你可以做的并不多,但主屏幕会偶尔刷新一次,所以新图标最终会自动替换旧图标。

From Android Nougat, default launcher icon should be roundIcon . 从Android Nougat,默认启动器图标应为roundIcon See this Reference 请参阅此参考

Maybe you should change your AndroidManifest for your application tag 也许您应该为您的application标签更改AndroidManifest

 android:icon="@mipmap/ic_launcher"
 android:roundIcon="@mipmap/ic_launcher_round"

重新启动手机 ,您的图标将在最近的应用和通知中更新。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM