Служба не продолжает работать после сбоя приложения - PullRequest
0 голосов
/ 28 мая 2019

Моя служба запускается при запуске приложения, но когда я закрываю приложение из последних приложений, оно падает и прекращает привязку

Я попытался использовать поток в сервисе, и поток продолжит работу после закрытия приложения, но он не работает, я также возвращаюсь в функции onStartCommand START_STICKY и не могу понять, в чем проблема.


public class MyThread extends Thread {
        @Override
        public void run() {
            while (true)
            {
                try {
                    this.sleep(1000);

                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        }
    }

@Override
    public int onStartCommand(final Intent intent,
                              final int flags,
                              final int startId) {
        MyThread mt = new  MyThread();
        mt.start();


        return START_STICKY;
    }

Я бы хотел, чтобы служба продолжала работать после того, как я закрою приложение и удалю его из последних приложений.

1 Ответ

0 голосов
/ 28 мая 2019

Вам необходимо создать уведомление в строке состояния, чтобы сделать службу приоритетной и поддерживать ее в рабочем состоянии.Вы можете прочитать больше на этой странице https://developer.android.com/guide/components/services

public class MyThread extends Thread {
    @Override
    public void run() {
        while (true)
        {
            try {
                this.sleep(1000);

            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
}

@Override
public int onStartCommand(final Intent intent,
final int flags,
final int startId) {
    MyThread mt = new  MyThread();
    mt.start();

    Intent notificationIntent = new Intent(this, ExampleActivity.class);
    PendingIntent pendingIntent =
    PendingIntent.getActivity(this, 0, notificationIntent, 0);

    Notification notification =
    new Notification.Builder(this, CHANNEL_DEFAULT_IMPORTANCE)
    .setContentTitle(getText(R.string.notification_title))
        .setContentText(getText(R.string.notification_message))
        .setSmallIcon(R.drawable.icon)
        .setContentIntent(pendingIntent)
        .setTicker(getText(R.string.ticker_text))
        .build();

    startForeground(ONGOING_NOTIFICATION_ID, notification);

    return START_STICKY;
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...