android 响应本机应用程序图标问题,应用程序菜单中的应用程序图标未更改

mm5n2pyu  于 2022-12-31  发布在  Android
关注(0)|答案(5)|浏览(175)

我使用的是react本机版本0.58。
我用默认的ic_launcher. png替换了所有mipmap文件夹中的应用图标。但是应用图标仍然是默认的android图标。我确信我的png大小适合相应的mipmap文件夹。
谢谢

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:tools="http://schemas.android.com/tools"
package="com.cekilissepeti">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<uses-permission tools:node="remove" android:name="android.permission.READ_PHONE_STATE" />

<application
  android:name=".MainApplication"
  android:label="@string/app_name"
  android:icon="@mipmap/ic_launcher"
  android:roundIcon="@mipmap/ic_launcher_round"
  android:allowBackup="false"
  android:theme="@style/AppTheme">
  <activity
    android:name=".MainActivity"
    android:label="@string/app_name"
    android:screenOrientation="portrait"
    android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
    android:windowSoftInputMode="adjustResize">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
  </activity>
  <activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
</application>
ubof19bj

ubof19bj1#

我不得不从app/src/main/res文件夹中删除“mipmap-anydpi-v26”,该文件夹包含两个xml文件,分别用于正常图标和圆形图标。

nle07wnf

nle07wnf2#

我不得不将文件重命名为不同于ic_launcher_roundic_launcher的文件,
然后我更新了AndroidMaifest.xml

<application
      android:name=".MainApplication"
      android:label="@string/app_name"
      android:icon="@mipmap/launcher_new_name"
      android:roundIcon="@mipmap/launcher_new_name_round"
nlejzf6q

nlejzf6q3#

检查android/app/src/debug/res中是否有图标一些自动图标生成器工具会在所有android风格中抛出图标
如果您在那里发现了图标,请删除它们,/main/res文件夹下应该只有一个图标位置

velaa5lx

velaa5lx4#

如果您在手机上使用MIUI,则需要切换主题。请参阅https://stackoverflow.com/a/15529525/15609577

b09cbbtk

b09cbbtk5#

我正在使用react-native版本0.68.2,我的应用程序图标显示异常

    • 适合我的解决方案:**

1.开放项目
1.光盘adroid->app->src->main->res
1.有关名为**'mipmap-anydpi-v26'**的文件夹,请参阅
1.删除文件夹
1.重建您的项目。
"尽情享受吧"

相关问题