关于android:几分钟后前台服务停止或锁定手机

Forgeround service stop after a few minutes or locking the phone

我尝试创建每 20 秒发送一条消息的前台服务,但此服务会在几分钟后停止或锁定手机。
我在 android 8 (O) 中测试了这个服务。
我的代码是:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
  input = intent.getStringExtra("inputExtra");

  new Thread(new Runnable() {
    public void run() {
      while (progressStatus < 10000000) {
        progressStatus += 1;          
        handler.post(new Runnable() {
          @SuppressLint("MissingPermission")
          public void run() {
            Intent notificationIntent = new Intent(ExampleService.this, MainActivity.class);
            PendingIntent pendingIntent = PendingIntent.getActivity(ExampleService.this,
              0, notificationIntent, 0);
            String mmm = CHANNEL_ID;

            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
              notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
              id ="id_product";
              // The user-visible name of the channel.
              CharSequence name ="Product";
              // The user-visible description of the channel.
              String description ="Notifications regarding our products";
              int importance = NotificationManager.IMPORTANCE_MAX;
              NotificationChannel mChannel = new NotificationChannel(id, name, NotificationManager.IMPORTANCE_DEFAULT);
              // Configure the notification channel.
              mChannel.setDescription(description);
              mChannel.enableLights(true);
              // Sets the notification light color for notifications posted to this
              // channel, if the device supports this feature.
              mChannel.setLightColor(Color.RED);
              notificationManager.createNotificationChannel(mChannel);
            }

            NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(getApplicationContext(),"id_product")
              .setContentTitle("Example Service")
              .setContentText(input)
              .setSmallIcon(R.drawable.ic_launcher_background)
              .setContentIntent(pendingIntent)
              .setChannelId(id)

              .setAutoCancel(true).setContentIntent(pendingIntent)
              .setNumber(1)
              .setColor(255)
              .setContentText(input)
              .setWhen(System.currentTimeMillis());
            notificationManager.notify(1, notificationBuilder.build());

            Notification notification = new NotificationCompat.Builder(getApplicationContext(), CHANNEL_ID)
              .setContentTitle("Example Service")
              .setContentText(input)
              .setSmallIcon(R.drawable.ic_launcher_background)
              .setContentIntent(pendingIntent)
              .build();

              Toast.makeText(getApplicationContext()," run service" , Toast.LENGTH_SHORT).show();

              startForeground(1, notification);
            }
        });
        try {
          Thread.sleep(20000);
        } catch (InterruptedException e) {
          e.printStackTrace();
        }
      }
    }
  }).start();

  return START_STICKY;
}

@Nullable
@Override
public IBinder onBind(Intent intent) {
  return null;
}

这项服务在开始和最初几分钟都可以,但通常几分钟后结束,有时几分钟后重新开始。有时它通过连接到 Internet 启动,有时它通过连接 USB 电缆开始工作。我真的不知道是什么原因。有没有人可以帮助我解决这个问题?


请在此处正确阅读 Android Oreo 8.0 文档,
用于后台服务

我的建议是使用:

  • 作业调度器

  • 工作管理器

  • 希望这个答案对您当前的代码有所帮助

    https://stackoverflow.com/a/48302378/6541643