c# - 前台服务永远不会停止xamarin android

标签 c# xamarin xamarin.android foreground-service

我有 xamarin android 应用程序,可以从剪贴板读取并写入。如果用户按下按钮,它会使用前台服务。问题是,当用户再次点击按钮时,服务将从正在运行的服务中消失,但仍在执行其工作(编辑复制的文本)。我怎样才能完全阻止它工作?

前景.cs:

        public override IBinder OnBind(Intent intent)
        {
            return null;
        }
    public override StartCommandResult OnStartCommand(Intent intent, StartCommandFlags flags, int startId)
    {
        Clipboard.ClipboardContentChanged += async (o, e) =>
            {
                var text = await Clipboard.GetTextAsync();
                Toast.MakeText(this, text, ToastLength.Long).Show();
                if (text.Contains("@"))
                {
                    await Clipboard.SetTextAsync(text.Replace("@", ""));
                }
            };
        Notification notif = ReturnNotif();
        StartForeground(1, notif);
        return StartCommandResult.NotSticky;
    }

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

        public override void OnCreate()
        {
            base.OnCreate();
        }
        public override bool StopService(Intent name)
        {
            StopForeground(true);
            StopSelf();
            return base.StopService(name);
        }

MainActivity.cs:

    if (id == Resource.Id.myService)
    {
        if (count != 1)
        {
            count = 1;
            var intent = new Intent(this, typeof(foreground));
            intent.SetAction("No");
            if (Build.VERSION.SdkInt >= BuildVersionCodes.O)
            {
                StartForegroundService(intent);
            }
            else
            {
                StartService(intent);
            }
        }
        else
        {
            var intent = new Intent(this,typeof(foreground));
            StopService(intent);
            Toast.MakeText(this, "Service Stopped", ToastLength.Long).Show();
            count = 0;
        }
    }

我做错了什么?

编辑: 如果从最近使用的应用程序中删除该应用程序,服务将完全停止。

最佳答案

在您的MyForegroundService.cs中。只需在 OnDestroy() 方法中添加 StopForeground(true) 即可,如下代码所示。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

using Android.App;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;

namespace ForegroundServiceDemo
{
    [Service]
    class MyForegroundService : Service
    {
        public const int SERVICE_RUNNING_NOTIFICATION_ID = 10000;

        [return: GeneratedEnum]
        public override StartCommandResult OnStartCommand(Intent intent, [GeneratedEnum] StartCommandFlags flags, int startId)
        {
            CreateNotificationChannel();
            string messageBody = "service starting";
           // / Create an Intent for the activity you want to start
           Intent resultIntent = new Intent(this,typeof(Activity1));
           // Create the TaskStackBuilder and add the intent, which inflates the back stack
           TaskStackBuilder stackBuilder = TaskStackBuilder.Create(this);
           stackBuilder.AddNextIntentWithParentStack(resultIntent);
           // Get the PendingIntent containing the entire back stack
           PendingIntent resultPendingIntent = stackBuilder.GetPendingIntent(0, PendingIntentFlags.UpdateCurrent);
           var notification = new Notification.Builder(this, "10111")
            .SetContentIntent(resultPendingIntent)
            .SetContentTitle("Foreground")
            .SetContentText(messageBody)
            .SetSmallIcon(Resource.Drawable.main)
            .SetOngoing(true)
            .Build();
            StartForeground(SERVICE_RUNNING_NOTIFICATION_ID, notification);
             //do you work
            return StartCommandResult.Sticky;

           
        }
        public override void OnDestroy()
        {
            base.OnDestroy();
            StopForeground(true);
        }
        public override IBinder OnBind(Intent intent)
        {
            return null;
        }

        void CreateNotificationChannel()
        {
            if (Build.VERSION.SdkInt < BuildVersionCodes.O)
            {
                
                return;
            }

            var channelName = Resources.GetString(Resource.String.channel_name);
            var channelDescription = GetString(Resource.String.channel_description);
            var channel = new NotificationChannel("10111", channelName, NotificationImportance.Default)
            {
                Description = channelDescription
            };

            var notificationManager = (NotificationManager)GetSystemService(NotificationService);
            notificationManager.CreateNotificationChannel(channel);
        }

    }
}

当你想停止它时。只需调用以下代码即可。

   Android.App.Application.Context.StopService(intent);

这是我在事件中的代码。

public class MainActivity : AppCompatActivity
    {
        protected override void OnCreate(Bundle savedInstanceState)
        {
            base.OnCreate(savedInstanceState);
            Xamarin.Essentials.Platform.Init(this, savedInstanceState);
            // Set our view from the "main" layout resource
            SetContentView(Resource.Layout.activity_main);
            Button button1 = FindViewById<Button>(Resource.Id.button1);
            Button button2 = FindViewById<Button>(Resource.Id.button2);
            button2.Click += Button2_Click;
            button1.Click += Button1_Click;
        }
        Intent intent;
        private void Button2_Click(object sender, System.EventArgs e)
        {
            // stop foreground service.
            Android.App.Application.Context.StopService(intent);
        }

        private void Button1_Click(object sender, System.EventArgs e)
        {
             intent = new Intent(Android.App.Application.Context, typeof(MyForegroundService));

  // start foreground service.
            if (Android.OS.Build.VERSION.SdkInt >= Android.OS.BuildVersionCodes.O)
            {
                StartForegroundService(intent);
              
            }
        }

这是正在运行的 GIF。

enter image description here

====更新====

the expected behavior is : when service stopped user can copy and paste normally without the service interference

您可以使用以下方式来实现这一点。使用 Clipboard.ClipboardContentChanged += Clipboard_ClipboardContentChanged; 执行该行为,使用 Clipboard.ClipboardContentChanged -= Clipboard_ClipboardContentChanged; 禁用OnDistory 方法中的行为。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

using Android.App;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Xamarin.Essentials;

namespace ForegroundServiceDemo
{
    [Service]
    class MyForegroundService : Service
    {
        public const int SERVICE_RUNNING_NOTIFICATION_ID = 10000;

        [return: GeneratedEnum]
        public override StartCommandResult OnStartCommand(Intent intent, [GeneratedEnum] StartCommandFlags flags, int startId)
        {
            CreateNotificationChannel();
            string messageBody = "service starting";


            Clipboard.ClipboardContentChanged += Clipboard_ClipboardContentChanged;

             // / Create an Intent for the activity you want to start
             Intent resultIntent = new Intent(this,typeof(Activity1));
           // Create the TaskStackBuilder and add the intent, which inflates the back stack
           TaskStackBuilder stackBuilder = TaskStackBuilder.Create(this);
           stackBuilder.AddNextIntentWithParentStack(resultIntent);
           // Get the PendingIntent containing the entire back stack
           PendingIntent resultPendingIntent = stackBuilder.GetPendingIntent(0, PendingIntentFlags.UpdateCurrent);
           var notification = new Notification.Builder(this, "10111")
            .SetContentIntent(resultPendingIntent)
            .SetContentTitle("Foreground")
            .SetContentText(messageBody)
            .SetSmallIcon(Resource.Drawable.main)
            .SetOngoing(true)
            .Build();
            StartForeground(SERVICE_RUNNING_NOTIFICATION_ID, notification);
             //do you work
            return StartCommandResult.Sticky;

           
        }

        private async void Clipboard_ClipboardContentChanged(object sender, EventArgs e)
        {
            //throw new NotImplementedException();

            var text = await Clipboard.GetTextAsync();
            Toast.MakeText(this, text, ToastLength.Long).Show();
            if (text.Contains("@"))
            {
                await Clipboard.SetTextAsync(text.Replace("@", ""));
            }
        }

        public override void OnDestroy()
        {
            base.OnDestroy();
            Clipboard.ClipboardContentChanged -= Clipboard_ClipboardContentChanged;

            StopForeground(true);
        }
        public override IBinder OnBind(Intent intent)
        {
            return null;
        }

        void CreateNotificationChannel()
        {
            if (Build.VERSION.SdkInt < BuildVersionCodes.O)
            {
                
                return;
            }

            var channelName = Resources.GetString(Resource.String.channel_name);
            var channelDescription = GetString(Resource.String.channel_description);
            var channel = new NotificationChannel("10111", channelName, NotificationImportance.Default)
            {
                Description = channelDescription
            };

            var notificationManager = (NotificationManager)GetSystemService(NotificationService);
            notificationManager.CreateNotificationChannel(channel);
        }

    }
}

这是运行 GIF。

enter image description here

关于c# - 前台服务永远不会停止xamarin android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63667706/

相关文章:

c# - 在 ASP.Net Core 中验证 IFormFile 的图像类型

c# - 使用反射获取继承接口(interface)的类的属性

c# - 如何在 xamarin 或 c# 或 python 中检测图像中的所有分隔线?

c# - 无法在 Android 9,10 Xamarin 上获得媒体播放器声音

xamarin - xamarin.android 中的 Xam.Plugin.Media 预先获取目标文件夹

c# - 如何在Python中将字节数组反序列化/序列化为结构体?

时间:2019-03-17 标签:c#ObservableCollection: How to implement CollectionChanged event

android - 什么是 com.android.externalstorage?

sqlite - 日期比较时出现错误 : System. NotSupportedException

c# - 需要帮助设计进程间通信层