后台服务不起作用Xamarin.Android

时间:2015-11-09 09:23:25

标签: c# android xamarin

我有问题。我的服务工作,但当我关闭应用程序服务停止。 我如何让我的服务正在运行?

服务

[Service]
public class NotificationService : Service
{
  public NotificationService () { }

  public override StartCommandResult OnStartCommand (Android.Content.Intent intent, StartCommandFlags flags, int startId)
  {
    new Task(() =>
        {
            DoWork();
        } ).Start();
    return StartCommandResult.Sticky;
  }

public override void OnDestroy ()
{
    base.OnDestroy ();
}

  public override IBinder OnBind (Intent intent)
  {
    throw new NotImplementedException ();
  }

  void DoWork()
  {
    new Task(() =>
        {
            for (int i = 0; i < 100; i ++)
            {
                System.Threading.Thread.Sleep(1000);
                var context = Android.App.Application.Context;
                var builder = new Android.App.Notification.Builder(context)
                    .SetSmallIcon(Resource.Drawable.icon)
                    .SetContentTitle("My application")
                    .SetDefaults(NotificationDefaults.Sound)
                    .SetContentText(i.ToString())
                    .SetOngoing(true);
                var not = builder.Build();
                var notManager = context.GetSystemService(NotificationService) as NotificationManager;
                notManager.Notify(1, not);
            }
        }).Start();
    }
}

MainActivity.cs

protected override void OnCreate (Bundle bundle)
{
    base.OnCreate (bundle);

    global::Xamarin.Forms.Forms.Init (this, bundle);

    LoadApplication (new App ());

    new Task(() =>
        {
            var notificationIntent = new Intent(this, typeof(NotificationService));
            StartService(notificationIntent);
        }).Start(); 
    Android.Widget.Toast.MakeText(this, "run", Android.Widget.ToastLength.Short).Show();
}

2 个答案:

答案 0 :(得分:0)

当我们从VS启动应用程序并停止应用程序时。 VS自动关闭所有服务。需要将应用程序构建到设备上,然后才能从设备启动应用程序。

答案 1 :(得分:0)

抱歉回复晚了,但我认为它可以帮助其他人。我想向您明确说明您正在将此服务作为后台服务编写。后台服务不能长时间运行。 Android 8.0以后的Android后台服务有一些限制。一段时间后,Android 会自动终止应用的后台服务。

看到这个https://developer.android.com/about/versions/oreo/background

如果你想长时间运行一个服务,那就让服务前台服务。请按照 https://docs.microsoft.com/en-us/xamarin/android/app-fundamentals/services/foreground-services 详细了解 Xamarin Forms 中的前台服务。