Android图标被拾取而不是通知图标
Posted
技术标签:
【中文标题】Android图标被拾取而不是通知图标【英文标题】:Android icon gets picked up instead of notification icon 【发布时间】:2021-08-20 22:30:57 【问题描述】:我正在使用 FCM 通知,并在我的 androidManifest.xml 中设置了以下内容:
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@drawable/splash" />
<!-- Set color used with incoming notification messages. This is used when no color is set for the incoming notification message. -->
<meta-data
android:name="com.google.firebase.messaging.default_notification_color"
android:resource="@color/splash_color" />
其中 splash 是透明的 png 图像。
我在同一个清单文件中也有我这样设置的 android 应用程序图标:
<application
android:name="io.flutter.app.FlutterApplication"
android:label="myapp"
android:icon="@drawable/ic_launcher">
发生的情况是,当弹出通知时,它会选择 ic_launcher 而不是启动。如果我替换 ic_launcher 并将 splash 作为我的 android 图标,那么我会看到通知图标。
但是,如果我这样做,那么我的应用程序图标(现在是透明图像)会变成黑色作为我不想要的背景。我希望 ic_launcher 成为我的背景颜色。我不明白为什么 android:icon 中定义的图像会被拾取以进行通知?
【问题讨论】:
【参考方案1】:对于遇到此问题的任何人,请将元标记放在应用程序标记之后。不要将它们放在活动标签下。所以是这样的:
<application
android:name="io.flutter.app.FlutterApplication"
android:label="When Coin"
android:icon="@mipmap/ic_launcher">
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@mipmap/ic_notification" />
<activity
android:name=".MainActivity"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- This keeps the window background of the activity showing
until Flutter renders its first frame. It can be removed if
there is no splash screen (such as the default splash screen
defined in @style/LaunchTheme). -->
<meta-data
android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
android:value="true" />
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
【讨论】:
以上是关于Android图标被拾取而不是通知图标的主要内容,如果未能解决你的问题,请参考以下文章