嗨,我正在通过推送创建警报,所以当我收到通知时,我设置了警报。一切正常,但警报显示在我推动的那一刻,而不是我说的那一刻。
这是我的代码:
public void set_alarm(int year, int month, int day, int hour, int minute,
String title) {
Calendar cal = Calendar.getInstance();
cal.set(Calendar.MONTH, 5);
cal.set(Calendar.YEAR, 2012);
cal.set(Calendar.DAY_OF_MONTH, 31);
cal.set(Calendar.HOUR_OF_DAY, 9);
cal.set(Calendar.MINUTE, 46);
Intent intent = new Intent(c, AlarmActivity.class);
intent.putExtra("title", title);
PendingIntent pendingIntent = PendingIntent.getBroadcast(
c.getApplicationContext(), 1253, intent,
PendingIntent.FLAG_UPDATE_CURRENT | Intent.FILL_IN_DATA);
AlarmManager alarmManager = (AlarmManager) c
.getSystemService(c.ALARM_SERVICE);
alarmManager.set(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(),
pendingIntent);
}
这是接收通知的类:
public class AlarmActivity extends BroadcastReceiver {
@Override
public void onReceive(Context c, Intent i) {
Toast.makeText(c, "Alarm worked.", Toast.LENGTH_LONG).show();
int icon = R.drawable.ic_dialog_alert;
long when = System.currentTimeMillis();
Bundle bundle = i.getExtras();
String title = bundle.getString("title");
final int NOTIF_ID = 1234;
NotificationManager notofManager = (NotificationManager) c
.getSystemService(Context.NOTIFICATION_SERVICE);
Intent notificationIntent = new Intent(c, AnonymeActivity.class);
PendingIntent contentIntent = PendingIntent.getActivity(c, 0,
notificationIntent, 0);
Notification notification = new Notification(icon, "Faraway", when);
notification.setLatestEventInfo(c, "Faraway alarm", title,
contentIntent);
notification.flags = Notification.FLAG_INSISTENT;
notification.defaults |= Notification.DEFAULT_SOUND;
notofManager.notify(NOTIF_ID, notification);
}
}
谢谢