我正在构建一个应用程序,它会在用户醒着的时候以特定的时间间隔触发通知。
我在服务中运行了一个alarmManager。通过按钮单击主活动显式启动该服务,并使alarmManager在特定时间内执行通知。如何在一天中的某些时段停止通知?我不希望在用户睡觉时触发这些通知。
当前以用户设置的时间间隔触发通知的代码低于(导入已删除......已经足够长了):
public class FartSmackinChunks extends Service {
public Notification scheduleNotification;
public AlarmManager alarmScheduleManager;
public PendingIntent alarmScheduleIntent;
private Boolean autoUpdateBoolean = true;
private int intervalsGoneByInt = 0;
private Notification notification;
public static final int NOTIFICATION_ID = 1;
@Override
public void onCreate() {
// TODO: Actions to perform when service is created.
int icon = R.drawable.icon;
String tickerText = "INTERVAL FIRED";
long when = System.currentTimeMillis();
scheduleNotification = new Notification(icon, tickerText, when);
alarmScheduleManager = (AlarmManager)getSystemService(Context.ALARM_SERVICE);
String ALARM_ACTION;
ALARM_ACTION = ScheduleAlarmReceiver.ACTION_REFRESH_SCHEDULE_ALARM;
Intent intentToFire = new Intent(ALARM_ACTION);
alarmScheduleIntent = PendingIntent.getBroadcast(this, 0, intentToFire,
0);
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
SharedPreferences mySharedPreferences =
PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
boolean autoUpdateBoolean =
mySharedPreferences.getBoolean("storedAutoUpdateBoolean", false);
String updateFreq =
mySharedPreferences.getString("storedInitialAverageTimeInterval", "00:00:00");
SimpleDateFormat dfInterval = new SimpleDateFormat("hh:mm:ss");
Date intervalTimeAsDateObject = null;
long updateFreqMilliLong;
try {
intervalTimeAsDateObject = dfInterval.parse(updateFreq);
} catch (ParseException e) {
e.printStackTrace();
}
updateFreqMilliLong = intervalTimeAsDateObject.getTime() - 18000000;
if (autoUpdateBoolean) {
int alarmType = AlarmManager.ELAPSED_REALTIME_WAKEUP;
long timetoRefresh = SystemClock.elapsedRealtime() +
updateFreqMilliLong;
alarmScheduleManager.setInexactRepeating(alarmType,
timetoRefresh, updateFreqMilliLong, alarmScheduleIntent);
notifications();
} else alarmScheduleManager.cancel(alarmScheduleIntent);
return Service.START_NOT_STICKY;
};
private void notifications() {
**notification stuff in here***
}
@Override
public IBinder onBind(Intent intent) {
// TODO: Replace with service binding implementation.
return null;
}
@Override
public void onDestroy() {
this.alarmScheduleManager.cancel(alarmScheduleIntent);
}
}
.....我的广播接收器实现在这里:
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
public class ScheduleAlarmReceiver extends BroadcastReceiver {
public static final String ACTION_REFRESH_SCHEDULE_ALARM
= "com.application.ACTION_REFRESH_SCHEDULE_ALARM";
@Override
public void onReceive(Context context, Intent intent) {
Intent startIntent = new Intent(context, SmokerReducerService.class);
context.startService(startIntent);
}
}
我在解决如何实施这一问题时遇到了一些困难。
我正在考虑重做这段代码,以便在唤醒时触发alarmManager并在sleepTime停止,所有在服务内部都是一个Timer,它以特定的时间间隔触发通知方法?有没有更好的方法来做这件事?
任何输入都将不胜感激。我一直试图在脑子里解决这个问题几天了。
由于
修改: @anyone遇到了打算使用Timer进行日常通知的人:
当设备进入休眠状态时,运行时将运行在服务内部运行的计时器(即......用户将电话置于待机状态)。因此,使用计时器以特定时间间隔触发通知将无法在服务中正常工作,因为当Android暂停服务时,它还会暂停计时器,从而抛出间隔。
执行此操作的正确方法是使用具有待处理意图数组的AlarmManager在白天的特定时间设置警报。这样可以确保即使手机处于待机状态,通知(或当时您想要发生的任何事情)仍然会被执行。
答案 0 :(得分:3)
我正在考虑重做这段代码,以便在唤醒时触发alarmManager并在sleepTime停止,所有在服务内部都是一个Timer,它以特定的时间间隔触发通知方法?有没有更好的方法来做这件事?
在我看来,忘记思考一种“更好”的方式,这似乎是唯一的方法。使用计时器来控制(启用/禁用)另一个计时器并不是那么奇怪,对我来说是完全合理的。