Android BroadCastReceiver中的通知不起作用

Android BroadCastReceiver中的通知不起作用,android,Android,我在BroadcastReceiver()中遇到通知问题。 正如我所知,我的代码以前工作正常,但现在不行了。 有时会出现NotificationTicker,但没有出现标题和内容。 这是我的密码。我的搜索无法帮助我找到问题所在 这是我的密码: private void MyNotification(Context context) { String NotificqationText = "NotificqationText"; String NotificationTitle

我在BroadcastReceiver()中遇到通知问题。 正如我所知,我的代码以前工作正常,但现在不行了。 有时会出现NotificationTicker,但没有出现标题和内容。 这是我的密码。我的搜索无法帮助我找到问题所在

这是我的密码:

private void MyNotification(Context context) {

    String NotificqationText = "NotificqationText";
    String NotificationTitle = "NotificationTitle ";
    String NotificationTicker = "NotificationTicker";
    PendingIntent MyPendingIntent = PendingIntent.getActivity(context, 0, new Intent(context, Splash.class), 0);


    NotificationCompat.Builder MyNB = new NotificationCompat.Builder(context);
    MyNB.setSmallIcon(R.drawable.icon);
    MyNB.setContentTitle(NotificationTitle);
    MyNB.setContentText(NotificqationText);
    MyNB.setTicker(NotificationTicker);
    MyNB.setAutoCancel(true);
    MyNB.setContentIntent(MyPendingIntent);

    Bitmap MyPicture = BitmapFactory.decodeResource(context.getResources(), R.drawable.icon);
    MyNB.setLargeIcon(MyPicture);

    NotificationCompat.BigPictureStyle MyPicStyle = new NotificationCompat.BigPictureStyle().bigPicture(MyPicture);
    MyPicStyle.setSummaryText("Etude can makes our life Enlightened");
    MyNB.setStyle(MyPicStyle);


    MyNB.setStyle(new NotificationCompat.BigTextStyle());
    NotificationCompat.BigTextStyle MyText = new NotificationCompat.BigTextStyle();
    MyText.bigText(NotificqationText);
    MyText.setBigContentTitle(NotificationTitle);

    NotificationManager MyNotifyManager = (NotificationManager) context.getSystemService(context.NOTIFICATION_SERVICE);
    MyNotifyManager.notify(1, MyNB.build());

}
我使用Toast message查找我的broadcastreceiver是否工作,并查找广播是否正常工作,只有通知有问题

请尝试以下代码:

private void MyNotification(Context context) {

    String NotificqationText = "NotificqationText";
    String NotificationTitle = "NotificationTitle ";
    String NotificationTicker = "NotificationTicker";
    Intent intent = new Intent(this, Splash.class);
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |(Intent.FLAG_ACTIVITY_SINGLE_TOP
            | Intent.FLAG_ACTIVITY_CLEAR_TASK));
    PendingIntent MyPendingIntent = PendingIntent.getActivity(this, 0,
            intent, PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_ONE_SHOT);


    Bitmap MyPicture = BitmapFactory.decodeResource(context.getResources(), R.drawable.icon);

    Notification MyNB = new Notification.Builder(this)
    .setSmallIcon(R.drawable.icon)
    .setLargeIcon(MyPicture)
    .setStyle()
    .setBigContentTitle(NotificationTitle)
    .setContentTitle(NotificationTitle)
    .setContentText(NotificqationText)
    .setTicker(NotificationTicker)
    .setAutoCancel(true)
    .setContentIntent(MyPendingIntent)
    .build();
    NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
    MyNB.flags |= Notification.FLAG_SHOW_LIGHTS;
    MyNB.flags |= Notification.FLAG_AUTO_CANCEL;
    MyNB.defaults = Notification.DEFAULT_ALL;

    notificationManager.notify((int)System.currentTimeMillis(), MyNB);
    }
请尝试以下代码:

private void MyNotification(Context context) {

    String NotificqationText = "NotificqationText";
    String NotificationTitle = "NotificationTitle ";
    String NotificationTicker = "NotificationTicker";
    Intent intent = new Intent(this, Splash.class);
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |(Intent.FLAG_ACTIVITY_SINGLE_TOP
            | Intent.FLAG_ACTIVITY_CLEAR_TASK));
    PendingIntent MyPendingIntent = PendingIntent.getActivity(this, 0,
            intent, PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_ONE_SHOT);


    Bitmap MyPicture = BitmapFactory.decodeResource(context.getResources(), R.drawable.icon);

    Notification MyNB = new Notification.Builder(this)
    .setSmallIcon(R.drawable.icon)
    .setLargeIcon(MyPicture)
    .setStyle()
    .setBigContentTitle(NotificationTitle)
    .setContentTitle(NotificationTitle)
    .setContentText(NotificqationText)
    .setTicker(NotificationTicker)
    .setAutoCancel(true)
    .setContentIntent(MyPendingIntent)
    .build();
    NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
    MyNB.flags |= Notification.FLAG_SHOW_LIGHTS;
    MyNB.flags |= Notification.FLAG_AUTO_CANCEL;
    MyNB.defaults = Notification.DEFAULT_ALL;

    notificationManager.notify((int)System.currentTimeMillis(), MyNB);
    }

thx Bro,当我再次检查时,我的代码为真,但像“Clean Master”这样的应用程序已阻止我手机内的通知。thx Bro,当我再次检查时,我的代码为真,但像“Clean Master”这样的应用程序已阻止我手机内的通知。当我再次检查时,我的代码为真,但像“Clean Master”这样的应用程序当我再次检查我的代码是否为真时,我的手机内的通知被阻止,但像“Clean Master”这样的应用程序在我的手机内阻止了我的通知