【问题标题】:StatusBarNotification how to get data or resend intent?StatusBarNotification 如何获取数据或重新发送意图?
【发布时间】:2017-12-01 21:42:53
【问题描述】:

我的应用通过 Firebase 接收推送通知。现在,当通知到达时可能会发生 3 种不同的情况:

  1. 应用程序在前台
  2. 应用在后台
  3. 应用未运行

情况1没问题。在应用程序中收到通知确定。 只要您点击抽屉中的通知,情况 2 和 3 就可以正常工作。 在情况 2 和 3 中,当点击应用程序图标而不是抽屉图标时,应用程序根本不会收到任何通知。我已尝试从 StatusBar 获取活动通知,并且可行,但我无法从 Extras 中检索数据或将通知重新发送到等待推送通知服务。这是获取通知的实验代码。

        NotificationManager notificationManager = (NotificationManager)Application.Context.GetSystemService(Context.NotificationService);

        var notifications = notificationManager.GetActiveNotifications()
            .Where(notif => notif.PackageName == Application.Context.PackageName);

        foreach (var notification in notifications)
        {
            Log.Info(TAG, "OnActivityResumed: Notification in active in Status Bar: {0}", notification.Notification.ToString());

            var data = notification.Notification.Extras.GetString("data");

            Log.Debug("Notifier", "Data received: {0}", data);

            //if (data != null)
            //{
            //    Settings.Notification = JsonConvert.DeserializeObject<LoginNotificationParameter>(data);
            //}
        }

        // Canceling all notifications
        notificationManager.CancelAll();

问题:

  1. 当通知在抽屉中时,应用程序没有收到任何意图是正确的行为吗?
  2. 如果是这样,当用户点击应用程序图标而不是抽屉通知时,我该如何处理情况 2 和 3?

打印所有 Extras Key Values 时,我在 het Notification 中看到此数据:

06-28 16:34:13.174 20792 20792 I Notifier: OnActivityResumed: Notification is active in Status Bar: Notification(pri=0 contentView=null vibrate=null sound=content://settings/system/notification_sound defaults=0x0 flags=0x10 color=0x00000000 vis=PRIVATE semFlags=0x0 semPriority=0)
06-28 16:34:13.191 20792 20792 I Notifier: KeyIn: Extras Key: android.title Data: Login
06-28 16:34:13.191 20792 20792 I Notifier: KeyIn: Extras Key: android.subText Data:
06-28 16:34:13.191 20792 20792 I Notifier: KeyIn: Extras Key: android.template Data: android.app.Notification$BigTextStyle
06-28 16:34:13.192 20792 20792 I Notifier: KeyIn: Extras Key: android.showChronometer Data: false
06-28 16:34:13.192 20792 20792 I Notifier: KeyIn: Extras Key: android.text Data: Er is een inlogverzoek voor u ontvangen.
06-28 16:34:13.194 20792 20792 I Notifier: KeyIn: Extras Key: android.progress Data: 0
06-28 16:34:13.194 20792 20792 I Notifier: KeyIn: Extras Key: android.progressMax Data: 0
06-28 16:34:13.195 20792 20792 I Notifier: KeyIn: Extras Key: android.appInfo Data: ApplicationInfo{a27f281 nl.natuurnetwerk.notifier}
06-28 16:34:13.195 20792 20792 I Notifier: KeyIn: Extras Key: android.showWhen Data: true
06-28 16:34:13.195 20792 20792 I Notifier: KeyIn: Extras Key: android.largeIcon Data:
06-28 16:34:13.195 20792 20792 I Notifier: KeyIn: Extras Key: android.bigText Data: Er is een inlogverzoek voor u ontvangen.
06-28 16:34:13.195 20792 20792 I Notifier: KeyIn: Extras Key: android.infoText Data:
06-28 16:34:13.195 20792 20792 I Notifier: KeyIn: Extras Key: android.originatingUserId Data: 0
06-28 16:34:13.196 20792 20792 I Notifier: KeyIn: Extras Key: android.progressIndeterminate Data: false
06-28 16:34:13.196 20792 20792 I Notifier: KeyIn: Extras Key: android.remoteInputHistory Data:

【问题讨论】:

  • 您是否希望通过通知更新应用中的数据?
  • 该应用程序的功能是验证来自网站的登录。当用户使用 UserId/Password 登录特定网站时,会向应用程序发送通知。当应用程序打开时,它开始扫描在网站上登录后显示的二维码。通知中的信息必须与二维码中的信息相同。当这适合网站继续其主页。否则登录被拒绝。

标签: android firebase xamarin firebase-cloud-messaging notificationmanager


【解决方案1】:

我试过了:

    private void HandlePendingNotifications()
    {
        NotificationManager notificationManager = (NotificationManager)Application.Context.GetSystemService(Context.NotificationService);

        var notifications = notificationManager.GetActiveNotifications()
            .OrderByDescending(notif => notif.PostTime)
            .Where(notif => notif.PackageName == Application.Context.PackageName);

        var notification = notifications.FirstOrDefault();

        if (notification != null)
        {
            Log.Debug(TAG, "OnActivityResumed: Notification is active in Status Bar: {0}", notification.Notification.ToString());

            NotificationManagerCompat nm = NotificationManagerCompat.From(this);

            notification.Notification.Sound = null;
            notification.Notification.Vibrate = null;

            // nm.Cancel(notification.Id);
            nm.Notify(0, notification.Notification);
        }

        //Timer timer = new Timer((state) =>
        //{
        //    // Canceling all notifications
        //    notificationManager.CancelAll();
        //    timer = null;
        //}, null, 2000, 2000);
    }

但由于某种原因,通知已发送但从未到达我的应用程序。

【讨论】:

  • 新发送的通知显示在抽屉中,但点击它不会激活我的应用程序。
  • Notify() 之后抽屉里有 2 个通知。原来的和我寄的。原版确实激活了我的应用程序。第二个没有。
【解决方案2】:

好的,这适用于我能想到的所有应用状态:

using Android.App;
using Android.Content;
using Android.OS;
using MvvmCross.Droid.Platform;
using MvvmCross.Droid.Support.V4;

namespace Notifier.Android.Classes.Services
{
    /// <summary>
    /// This class receives all Firebase intents.
    /// </summary>
    [BroadcastReceiver(Enabled = true, Permission = "com.google.android.c2dm.permission.SEND")]
    [IntentFilter(new[] { "com.google.android.c2dm.intent.RECEIVE" }, Categories = new string[] { "com.yourdomain.yourapp" })]
    public class FirebaseBroadcastReceiver : MvxWakefulBroadcastReceiver
    {
        public override void OnReceive(Context context, Intent intent)
        {
            var setup = MvxAndroidSetupSingleton.EnsureSingletonAvailable(context);
            setup.EnsureInitialized();

            var service = new Intent(context, typeof(FirebaseBroadcastReceiver));

            PowerManager.WakeLock sWakeLock;
            var pm = PowerManager.FromContext(context);
            sWakeLock = pm.NewWakeLock(WakeLockFlags.Full, "FirebaseBroadcastReceiver");
            sWakeLock.Acquire();


            if (intent.Extras != null)
            {
                // Your code to handle the intent
            }

            sWakeLock.Release();

            StartWakefulService(context, service);
        }
    }
}

【讨论】:

    【解决方案3】:

    扩展 FirebaseMessagingService 并覆盖 onMessageReceivedonDeletedMessages 回调。要在收到通知时自动打开应用程序/活动,您需要在有效负载中使用data(类似于{"data" : { "some_key" : "some_value"}})属性,以保证始终调用FirebaseMessagingService.onMessageReceived() 方法。

    请注意,在没有用户交互的情况下打开通知的活动/应用程序非常糟糕,应该避免。

    【讨论】:

    • @Paul Sinnema:我的答案是针对 android,您可以使用 Xamarin 中可用的等效类来调整答案。
    • 这正是我实现它的方式。问题是,当应用程序在后台并且用户点击图标而不是托盘通知时,没有收到通知,我们必须以某种方式自己获取它。我自己的答案中显示的 WakefulBroadcastReceiver 很好地解决了这个问题。
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-03-20
    • 1970-01-01
    • 1970-01-01
    • 2016-12-09
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多