首先抱歉我的英语。 我有一个警报列表,我需要在特定时间通知应用程序。我一次只发一个警报。 我用设置功能发出警报,它可以工作,然后我把下一个警报放在广播中但是它没有在时间唤醒。为什么? 毫秒是不同的和正确的,但警报不起作用。
public static void setNextAlarma(long milisegundos){
Bundle extras = new Bundle();
extras.putString("mensaje", "message");
Intent i = new Intent(InfoApp.ALERT_MANAGER);
i.putExtras(extras);
PendingIntent pintent = PendingIntent.getBroadcast(InfoApp.miContexto, (int) milisegundos, i, 0);
if (milisegundos != 0){
InfoApp.miContexto.registerReceiver(AlertasBrCast, new IntentFilter(InfoApp.ALERT_MANAGER));
AlarmManager alarm = (AlarmManager)InfoApp.miContexto.getSystemService(Context.ALARM_SERVICE);
alarm.set(AlarmManager.RTC_WAKEUP, milisegundos, pintent);
}
else{
AlarmManager alarm = (AlarmManager)InfoApp.miContexto.getSystemService(Context.ALARM_SERVICE);
alarm.cancel(pintent);
}
}
public final static BroadcastReceiver AlertasBrCast = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
Bundle extras = intent.getExtras();
String mensaje = "";
if (extras != null)
mensaje = extras.getString("mensaje");
generateNotification(context, mensaje, Calendario.class, null);
updateAlarm();
}
};
public void updateAlarm(){
// Consult the next alarm in the database
long fechaNuevaMilli = (Utilidades.strToDate(nuevaFecha,
InfoApp.formatoSQL)).getTime();
Utilidades.setNextAlarma(fechaNuevaMilli);
}
谢谢
答案 0 :(得分:0)
alarm.set(AlarmManager.RTC_WAKEUP,milisegundos,pintent);只有用户setRepeating函数指定延迟间隔
才会设置警报这是完美的解决方案