如何更改android上的“最近的应用程序托盘”图标?

时间:2017-08-20 22:45:28

标签: android

更改我的应用程序图标后,“最近的应用程序托盘”中的图标仍为Android的默认设置。我想改变它,但找不到任何方法。我用过的每个应用程序都有自己的图标(虽然注意到其中一些留下了旧图标)所以我不想有任何不同。

“最近的应用程序托盘”如下例所示:

recent apps tray example

提前致谢。

3 个答案:

答案 0 :(得分:1)

我遇到了完全相同的问题。经过大量重新安装(进行了微小更改)之后,我终于决定重新启动手机。做到了。

答案 1 :(得分:0)

转到设置并清除应用数据或重新安装,如果它不起作用,那么您没有在清单上正确设置图标

答案 2 :(得分:0)

您应该添加以下行:

android:logo="@mipmap/ic_launcher"

在清单文件中的<application>标签中,如下所示:

<application
    android:name=".App"
    android:icon="@mipmap/ic_launcher"
    android:logo="@mipmap/ic_launcher" <---- this line
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">