Forgeround service stop after a few minutes or locking the phone

核能气质少年 提交于 2019-12-10 18:05:48

问题


I try to create foreground service that toast a message every 20 second but this service stop after a few minutes or locking the phone. I test this service in android 8 (O). my code is :

@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;
}

this service is ok at the start and first minutes but But it usually ends after a few minutes and sometimes starts again after a few minutes. Sometimes it starts up by connecting to the Internet, sometimes it starts to work by connecting the USB cable. I really do not know what the cause is. IS there someone who can help me on this?


回答1:


Please read the Android Oreo 8.0 Documentation properly somewhere in here, for Background services

My Suggestion is to Use:

  1. JobScheduler

  2. Workmanager

Hope this Answer may help you in Your current code

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



来源:https://stackoverflow.com/questions/52490363/forgeround-service-stop-after-a-few-minutes-or-locking-the-phone

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!