我正在使用Onesignal在android中处理推送通知,什么是在xamarin.android中关闭应用程序时处理消息的最佳解决方案
protected override void OnCreate(Bundle savedInstanceState)
{......
OneSignal.Current.StartInit("ONE_SIGNAL_CODE")
.HandleNotificationReceived(Static.HandleNotificationReceived)
.InFocusDisplaying(OSInFocusDisplayOption.Notification)
.EndInit();
}
public static void HandleNotificationReceived(OSNotification notification)
{
Android.Util.Log.Info(tag, "Handle Notification Received");
}
在应用程序关闭时不调用此方法,当应用程序在后台或前景时可以正常工作