如何在特定时间触发android中的后台服务?
Posted
技术标签:
【中文标题】如何在特定时间触发android中的后台服务?【英文标题】:How to trigger a background service in android on specific time? 【发布时间】:2017-11-10 10:10:49 【问题描述】:我知道如何在特定时间触发 android 中的后台服务。我已经使用AlarmManager
来实现这一点,但我想在那个时候每天启动该服务。
假设我想在下午 12 点启动它,但在那之后服务应该继续运行。我也用过stopitself()
的方法,但是不行。
这是我的代码:
void alram(Context ctx)
Calendar cal = Calendar.getInstance();
cal.setTimeInMillis(System.currentTimeMillis());
cal.set(Calendar.HOUR_OF_DAY, 12);
cal.set(Calendar.MINUTE, 0);
cal.set(Calendar.SECOND, 0);
cal.set(Calendar.AM_PM,Calendar.AM);
Intent serviceIntent = new Intent(ctx, ServiceClass.class);
PendingIntent servicePendingIntent =
PendingIntent.getService(ctx,Service_Apps.SERVICE_ID,serviceIntent,0);
AlarmManager alarm = (AlarmManager) ctx
.getSystemService(Context.ALARM_SERVICE);
alarm.set(AlarmManager.RTC_WAKEUP,cal.getTimeInMillis(),servicePendingIntent);
alarm.setRepeating(
AlarmManager.RTC_WAKEUP,
cal.getTimeInMillis(),
AlarmManager.INTERVAL_DAY,
servicePendingIntent
);
【问题讨论】:
Using Alarmmanager to start a service at specific time的可能重复 看看***.com/questions/8321443/… @Channa 不重复,我们可以在特定时间开始服务,但我正在寻找每天的服务。 您可以做的是在第二天执行“旧”时计划新的 .setExact(..)。所以你的意图会做工作+计划。 【参考方案1】:您好,请使用此代码,它将有助于满足您的需求。
Calendar calendar = Calendar.getInstance();
calendar.set(Calendar.HOUR_OF_DAY, 12);
calendar.set(Calendar.MINUTE, 0);
calendar.set(Calendar.SECOND, 0);
PendingIntent pi = PendingIntent.getService(this, 0,
new Intent(this, Service_Apps.class),PendingIntent.FLAG_UPDATE_CURRENT);
AlarmManager am = (AlarmManager)getSystemService(Context.ALARM_SERVICE);
am.setRepeating(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(),
AlarmManager.INTERVAL_DAY, pi);
【讨论】:
以上是关于如何在特定时间触发android中的后台服务?的主要内容,如果未能解决你的问题,请参考以下文章
Android:如何通过长时间运行的后台服务触发屏幕 UI 事件(例如来电屏幕)?