如何更改 'Recents' 屏幕中的应用程序图标?

How do I change the app icon in the 'Recents' Screen?

我知道如何更改我的应用程序的图标,但是当我查看 Recents Screen 时,该图标是默认图标。

应用程序图标(目前一切正常):

我的“最近”屏幕中的图标:

这是我的 'AndroidManifest.xml'

的 'application' 标签
<application
    android:name=".App"
    android:allowBackup="true"
    android:icon="@mipmap/iconout"
    android:roundIcon="@mipmap/iconout"
    android:logo="@mipmap/iconout"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">

我已经尝试了很多我在这个平台上找到的解决方案(没有用),比如:

  1. 文件->新建->图片资源->选择图片..
  2. 安装和卸载应用程序
  3. 构建并清理项目
  4. 删除我项目中的所有默认图标
  5. 将我的图标从 mipmap 文件夹拖放到可绘制对象中

还有其他可能的解决方案吗?提前致谢!

尝试将图标格式更改为PNG。这对我有用。

或者您可以在不同的设备上尝试该应用程序,看看它是否不是 emulator/phone 的问题。

好的,我找到了解决方案,并决定为以后遇到同样问题的任何人回答。

我通过在 AndroidManifest.xml 的主要 activity 标记声明中添加 android:icon="@mipmap/iconout" 来修复它,如下所示:

<activity
        android:icon="@mipmap/iconout"
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:theme="@style/AppTheme.NoActionBar">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

这是最终结果: