如何更改我的应用程序中“正在运行的应用程序”屏幕中显示的图标?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何更改我的应用程序中“正在运行的应用程序”屏幕中显示的图标?相关的知识,希望对你有一定的参考价值。
我已经更改了我的启动器图标但是当我在“正在运行的应用程序”屏幕时,会显示android图标,如下图所示:
有谁知道我该如何解决这个问题?
这是清单文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="stelios.concerts">
<!-- To auto-complete the email text field in the login form with the user's emails -->
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.READ_PROFILE" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".Swipe_activity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar">
</activity>
<activity
android:name=".LoginActivity"
android:label="@string/title_activity_login"
android:screenOrientation="portrait">
</activity>
<activity android:name=".SplashActivity"
android:theme="@style/SplashTheme"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
答案
该图标被定义到清单中。在Android Studio中创建新项目时,会创建一个默认项目(恰好是您引用的项目),并且它具有ic_launcher作为名称。要更改图标,首先应将新图标(.png
文件)上传到项目的mipmap文件夹中,然后使用图标名称更改清单中的默认图标名称。
例如。 android:icon="@mipmap/ic_launcher"
到android:icon="@mipmap/your_icon_name"
以上是关于如何更改我的应用程序中“正在运行的应用程序”屏幕中显示的图标?的主要内容,如果未能解决你的问题,请参考以下文章
自定义在应用程序屏幕之间切换时可见的 Android 应用程序屏幕图像