首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Xamarin IOS:当应用程序不在后台时,如何处理通知点击?(终止状态)

Xamarin IOS:当应用程序不在后台时,如何处理通知点击?(终止状态)
EN

Stack Overflow用户
提问于 2019-07-15 05:43:42
回答 1查看 1.8K关注 0票数 1

我已经使用Firebase消息在我的xamarin窗体项目(聊天应用程序)上实现了推送通知。所有状态都在接收通知,当点击通知时,我需要显示相应的消息列表页面。

当应用程序处于前台和后台模式时,通知敲击是有效的。但是当应用程序没有出现在后台(关闭状态)时,点击就不起作用了。使用DidReceiveRemoteNotification,当应用处于后台状态时,我正在处理通知按钮。使用WillPresentNotificationDidReceiveNotificationResponse,我将显示通知,并在前台模式下处理通知龙头。代码添加如下:

代码语言:javascript
复制
 //Notification tapping when the app is in background mode.
 public override void DidReceiveRemoteNotification(UIApplication application, NSDictionary userInfo, Action<UIBackgroundFetchResult> completionHandler)
        {
            HandleMessage(userInfo);

            // Print full message.
            LogInformation(nameof(DidReceiveRemoteNotification), userInfo);

            completionHandler(UIBackgroundFetchResult.NewData);

            var myData = JsonConvert.DeserializeObject<List<webContentList>>(userInfo[new NSString("webContentList")] as NSString);
            Console.WriteLine($"myData received: {myData}");
            if (UIApplication.SharedApplication.ApplicationState.Equals(UIApplicationState.Active))
            {
                //App is in foreground, no action
            }
            else
            {
                MessagingCenter.Send<object, List<webContentList>>(this, "messagedata", myData);
            }
        }

        //Showing the notification when the app is in the foreground mode.
       [Export("userNotificationCenter:willPresentNotification:withCompletionHandler:")]
        public void WillPresentNotification(UNUserNotificationCenter center, UNNotification notification,
Action<UNNotificationPresentationOptions> completionHandler)
        {
            completionHandler(UNNotificationPresentationOptions.Sound | UNNotificationPresentationOptions.Alert);
        }

        //Notification tapping when the app is in the foreground mode.
[Export("userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:")]
            public void DidReceiveNotificationResponse(UNUserNotificationCenter center, UNNotificationResponse response, Action
            completionHandler)
            {
                completionHandler();
                NSDictionary userInfo = response.Notification.Request.Content.UserInfo;
                var myData = JsonConvert.DeserializeObject<List<webContentList>>(userInfo[new NSString("webContentList")] as NSString);
                Console.WriteLine($"myData received: {myData}");
                MessagingCenter.Send<object, List<webContentList>>(this, "messagedata", myData);
            }

FinishedLaunching

代码语言:javascript
复制
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            LoadApplication(new App());

            #region Push Notification            
            Firebase.Core.App.Configure();

            // Register your app for remote notifications.
            if (UIDevice.CurrentDevice.CheckSystemVersion(10, 0))
            {
                // iOS 10 or later
                var authOptions = UNAuthorizationOptions.Alert | UNAuthorizationOptions.Badge | UNAuthorizationOptions.Sound;
                UNUserNotificationCenter.Current.RequestAuthorization(authOptions, (granted, error) => {
                    Console.WriteLine(granted);
                });

                // For iOS 10 display notification (sent via APNS)
                UNUserNotificationCenter.Current.Delegate = this;

                // For iOS 10 data message (sent via FCM)
                //Messaging.SharedInstance.RemoteMessageDelegate = this;
            }
            else
            {
                // iOS 9 or before
                var allNotificationTypes = UIUserNotificationType.Alert | UIUserNotificationType.Badge | UIUserNotificationType.Sound;
                var settings = UIUserNotificationSettings.GetSettingsForTypes(allNotificationTypes, null);
                UIApplication.SharedApplication.RegisterUserNotificationSettings(settings);
            }

            UIApplication.SharedApplication.RegisterForRemoteNotifications();

            Messaging.SharedInstance.Delegate = this;
            Messaging.SharedInstance.ShouldEstablishDirectChannel = true;
            #endregion

            return base.FinishedLaunching(app, options);
        }

我的通知主体: webContentList是我的模型数据。

代码语言:javascript
复制
{
 "to" : "dmtfiSvBBM0:APA91bFnHkamMSYgxPuiSfdvKnU8hD_mOqrWijnENNgXVSkSgo1ILH3-uKVCU7Ez2PXXOhtDoobIyKBf5UshVfTmvjSqHgXMRTsqguKCSTjIfGnXrVP-_cNFq2sisshZO-BcfkwKTl-I",
 "collapse_key" : "type_a",
 "notification" : {
      "body" : "This is body",
     "title": "Tech Team",
     "priority":"high",
     "content_available":true
 },
 "data" : {
    "webContentList": [
        {
            "webContentDefinitionId": 818084,
            "pageTitle": "CCD Grade 3-4",
            "pageKwd": "CCD Grade 3-4",
            "pageDesc": "CCD Grade 3-4",
            "siteId": 45,
            "pageCreatedTime": 1555145959428,
            "pageUpdatedDate": 1555927274279,
            "modifier": {
                "userId": 12944,
                "applicationId": 32,
                "username": "robert.downey",
                "email": "robert@master-mail.net",
                "firstName": "Robert",
                "lastName": "Downey"
            },
            "creator": {
                "userId": 12944,
                "applicationId": 32,
                "username": "robert.downey",
                "email": "robert@master-mail.net",
                "firstName": "Robert",
                "lastName": "Downey"
            }
        }
        ]
 },
  "ttl": 3600
}

问题

当应用程序处于死状态时,只有主页正在加载,而不是显示消息列表页面。但是在UI中显示主页之前,消息列表显示进度(Acr userdialogs)也存在于UI中。因此,我认为,当应用程序处于死状态时,LoadApplication(new App());FinishedLaunching中是在通知点击功能之后工作的。那么,我如何才能停止正常应用程序启动代码的执行,并在应用程序处于死状态时显示消息列表页面?

更新

试着像下面这样。最初的发射是好的,但失败时,通过通知龙头发射。

代码语言:javascript
复制
  LoadApplication(new App());

        if (options != null)
        {
            var myData = JsonConvert.DeserializeObject<List<webContentList>>(options[new NSString("webContentList")] as NSString);
            if(myData != null)
            {
                MessagingCenter.Send<object, List<webContentList>>(this, "messagedata", myData);
            }
        }
EN

回答 1

Stack Overflow用户

发布于 2019-07-15 07:51:31

您可以通过扩展App构造函数将数据传递给Forms。

AppDelegate in iOS

代码语言:javascript
复制
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
    {

        var myData = JsonConvert.DeserializeObject<List<webContentList>>(options[new NSString("webContentList")] as NSString);

        global::Xamarin.Forms.Forms.Init();
        LoadApplication(new App(myData));

        return base.FinishedLaunching(app, options);
    }

表格中的App

代码语言:javascript
复制
public App(List<webContentList> list)
    {
        InitializeComponent();

        // handle the logic 
    }

更新

代码语言:javascript
复制
LoadApplication(new App());
MessagingCenter.Send<object, List<webContentList>>(this, "messagedata", myData);
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/57033793

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档