通知中心中的Android推送通知是灰色图标

时间:2019-09-03 17:30:40

标签: android android-studio

我创建了一个应用程序,当您按下按钮时,该应用程序应发出推送通知。可以,但是存在一个问题:通知中心中的图标显示为灰色。但是当我在应用程序中并查看左上角时,图标就出现了。

我的android版本是9,所以这不是android lolipop问题

一些图片:

在通知中心推送通知

Push notification in notification center

在应用中推送通知

Push notification in notification center

此人也遇到了同样的问题,通过将图像的透明/白色版本放在我做过的res文件夹中(它仍然存在,因此您可以检查我是否做对了),从而解决了该问题,但此操作不适用于我:

Why is my smallIcon for Notifications always greyed out?

我找不到确切的问题,但是有人建议在Manifest文件中放一行代码(该文件仍然存在,您可以检查一下我是否做对了):

<meta-data android:name="com.google.firebase.messaging.default_notification_icon"
            android:resource="@mipmap/whatsapp_icon" />

MainActivity.java:

package Package name that I chose;

import android.app.Notification;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.graphics.Color;
import android.support.v4.app.NotificationCompat;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    public void onClick(View view) {
        NotificationManager NM;
        Notification Note;

        NM = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

        Intent intent = new Intent("com.rj.notitfications.SECACTIVITY");

        PendingIntent pendingIntent = PendingIntent.getActivity(MainActivity.this, 1, intent, 0);

        String CHANNEL_ID = "my_channel_01";
        CharSequence name = "my_channel";
        String Description = "This is my channel";
        int importance = NotificationManager.IMPORTANCE_HIGH;
        NotificationChannel mChannel = new NotificationChannel(CHANNEL_ID, name, importance);
        mChannel.setDescription(Description);
        mChannel.enableLights(true);
        mChannel.setLightColor(Color.RED);
        mChannel.enableVibration(true);
        mChannel.setVibrationPattern(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 400});
        mChannel.setShowBadge(true);
        NM.createNotificationChannel(mChannel);

        Notification.Builder builder = new Notification.Builder(MainActivity.this, CHANNEL_ID);

        builder.setAutoCancel(false);
        builder.setTicker("this is ticker text");
        builder.setContentTitle("WhatsApp Notification");
        builder.setContentText("You have a new message");
        builder.setSmallIcon(R.mipmap.whatsapp_icon);
//        builder.setLargeIcon(R.mipmap.whatsapp_icon_round);
        builder.setContentIntent(pendingIntent);
        builder.setOngoing(false);
        builder.setSubText("This is subtext...");   //API level 16
        builder.setNumber(100);
        builder.build();

        Note = builder.getNotification();
        NM.notify(11, Note);
    }
}

AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.ste999.whatsapprelay">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/whatsapp_icon"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/whatsapp_icon_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <meta-data android:name="com.google.firebase.messaging.default_notification_icon"
            android:resource="@mipmap/whatsapp_icon" />
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>

这是a link到我的res文件夹

我希望有人可以指出我的错误并使其正确,以便图标也位于通知中心,而不是灰色圆圈

1 个答案:

答案 0 :(得分:0)

在透明背景上创建仅使用白色像素的资产。重要的是不要使用白色以外的其他颜色。

使用链接创建通知图标https://romannurik.github.io/AndroidAssetStudio/