Android前台服务在24小时后被终止。
创始人
2024-10-09 15:03:40
0

Android前台服务在24小时后被终止是因为Android系统对于前台服务有一个时间限制,超过该时间限制后系统会自动终止前台服务。这个时间限制在Android 8.0(API level 26)及以上为5分钟,而在Android 7.1(API level 25)及以下为1小时。如果需要在超过这个时间后仍然保持前台服务运行,可以使用以下方法解决:

  1. 使用AlarmManager定时启动服务:
    • 在服务的onCreate方法中设置一个定时任务,使用AlarmManager定时启动服务。
    • 在定时任务中判断并重新启动服务,以保持服务持续运行。
    • 这种方法可以在服务被系统终止后重新启动服务,保持前台服务持续运行。
public class MyForegroundService extends Service {
    private static final int NOTIFICATION_ID = 1;
    private static final long ALARM_INTERVAL = 24 * 60 * 60 * 1000; // 24 hours

    @Override
    public void onCreate() {
        super.onCreate();
        startForeground(NOTIFICATION_ID, createNotification());
        scheduleAlarm();
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        // Do your work here
        return START_STICKY;
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        cancelAlarm();
    }

    private Notification createNotification() {
        // Create and return a notification for the foreground service
        return new NotificationCompat.Builder(this, CHANNEL_ID)
                // Set notification content
                .build();
    }

    private void scheduleAlarm() {
        // Schedule an alarm to start the service after the specified interval
        AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
        Intent intent = new Intent(this, MyForegroundService.class);
        PendingIntent pendingIntent = PendingIntent.getService(this, 0, intent, 0);
        long triggerAtMillis = System.currentTimeMillis() + ALARM_INTERVAL;
        alarmManager.setExact(AlarmManager.RTC_WAKEUP, triggerAtMillis, pendingIntent);
    }

    private void cancelAlarm() {
        // Cancel the scheduled alarm
        AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
        Intent intent = new Intent(this, MyForegroundService.class);
        PendingIntent pendingIntent = PendingIntent.getService(this, 0, intent, 0);
        alarmManager.cancel(pendingIntent);
    }
}
  1. 使用JobScheduler或WorkManager调度任务:
    • 使用JobScheduler或WorkManager调度一个定时任务,定时启动服务。
    • 在定时任务中判断并重新启动服务,以保持服务持续运行。
    • 这种方法可以在服务被系统终止后重新启动服务,保持前台服务持续运行。
public class MyForegroundService extends Service {
    private static final int JOB_ID = 1;
    private static final long JOB_INTERVAL = 24 * 60 * 60 * 1000; // 24 hours

    @Override
    public void onCreate() {
        super.onCreate();
        startForeground(NOTIFICATION_ID, createNotification());
        scheduleJob();
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        // Do your work here
        return START_STICKY;
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        cancelJob();
    }

    private Notification createNotification() {
        // Create and return a notification for the foreground service
        return new NotificationCompat.Builder(this, CHANNEL_ID)
                // Set notification content
                .build();
    }

    private void scheduleJob() {
        // Schedule a job to start the service after the specified interval
        JobScheduler jobScheduler = (JobScheduler) getSystemService(Context.JOB_SCHEDULER_SERVICE);
        JobInfo.Builder builder = new JobInfo.Builder(JOB_ID, new ComponentName(this, MyJobService.class));
        builder.setMinimumLatency(JOB_INTERVAL);
        jobScheduler.schedule(builder.build());
    }

    private void cancelJob() {
        // Cancel the scheduled job
        JobScheduler jobScheduler = (JobScheduler) getSystemService(Context.JOB_SCHEDULER_SERVICE);
        jobScheduler.cancel(JOB_ID);
    }
}

public class MyJobService extends JobService {
    @Override
    public boolean onStartJob(JobParameters params) {
        // Start the foreground service here
        MyForegroundService.start(this);
        return false;
    }

相关内容

热门资讯

安装apache-beam==... 出现此错误可能是因为用户的Python版本太低,而apache-beam==2.34.0需要更高的P...
避免在粘贴双引号时向VS 20... 在粘贴双引号时向VS 2022添加反斜杠的问题通常是由于编辑器的自动转义功能引起的。为了避免这个问题...
Android Recycle... 要在Android RecyclerView中实现滑动卡片效果,可以按照以下步骤进行操作:首先,在项...
omi系统和安卓系统哪个好,揭... OMI系统和安卓系统哪个好?这个问题就像是在问“苹果和橘子哪个更甜”,每个人都有自己的答案。今天,我...
原生ios和安卓系统,原生对比... 亲爱的读者们,你是否曾好奇过,为什么你的iPhone和安卓手机在操作体验上有着天壤之别?今天,就让我...
Android - 无法确定任... 这个错误通常发生在Android项目中,表示编译Debug版本的Java代码时出现了依赖关系问题。下...
Android - NDK 预... 在Android NDK的构建过程中,LOCAL_SRC_FILES只能包含一个项目。如果需要在ND...
Akka生成Actor问题 在Akka框架中,可以使用ActorSystem对象生成Actor。但是,当我们在Actor类中尝试...
Agora-RTC-React... 出现这个错误原因是因为在 React 组件中使用,import AgoraRTC from “ago...
Alertmanager在pr... 首先,在Prometheus配置文件中,确保Alertmanager URL已正确配置。例如:ale...