ios - Xamarin.Forms - 区分后台和前台应用中心推送通知
<p><p>我们正在使用 App Center Push Notification 并根据以下文章 <a href="https://learn.microsoft.com/en-us/appcenter/sdk/push/xamarin-forms" rel="noreferrer noopener nofollow">https://learn.microsoft.com/en-us/appcenter/sdk/push/xamarin-forms</a> ,可以在 App.xaml.cs 中使用 Push.PushNotificationReceived 处理推送通知。</p>
<p>这实际上是工作的ATM,并且该方法实际上是为后台和前台通知触发的。</p>
<p>我们需要能够区分它们。每当用户点击通知(背景)时,我们都会将用户导航到应用的特定部分,如果应用已经打开(前景),我们就不能这样做。</p>
<p>我已经看到了一些实现这一点的方法,但它们都是特定于平台的(在本例中为 iOS)。有没有办法在 PCL 中做同样的事情?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我认为 Xamarin Forms 没有为我们提供获取应用程序状态的 api。</p>
<p>您可以通过在 Xamarin.Forms 中使用 <code>DependencyService</code> 来实现此目的:</p>
<p>首先在你的 PCL 项目中定义一个接口(interface):</p>
<pre><code>public interface IGetAppState
{
bool appIsInBackground();
}
</code></pre>
<p><strong>在 iOS 中:</strong></p>
<pre><code>
namespace App129.iOS
{
public class GETAppState_iOS : IGetAppState
{
public bool appIsInBackground()
{
UIApplicationState state = UIApplication.SharedApplication.ApplicationState;
bool result = (state == UIApplicationState.Background);
return result;
}
}
}
</code></pre>
<p><strong>在 Android 中:</strong></p>
<pre><code>
namespace App129.Droid
{
public class GETAppState_Android : IGetAppState
{
public bool appIsInBackground()
{
bool isInBackground;
RunningAppProcessInfo myProcess = new RunningAppProcessInfo();
GetMyMemoryState(myProcess);
isInBackground = myProcess.Importance != Importance.Foreground;
return isInBackground;
}
}
}
</code></pre>
<p>在您想知道您的应用是在后台还是前台的任何地方,您都可以使用:</p>
<pre><code>bool isInBackground = DependencyService.Get<IGetAppState>().appIsInBackground();
</code></pre></p>
<p style="font-size: 20px;">关于ios - Xamarin.Forms - 区分后台和前台应用中心推送通知,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/53948023/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/53948023/
</a>
</p>
页:
[1]