以下は、内部とonClickListnerで使用されるコードです。通知を表示したいのですが、しばらくしてから30秒と言いますが、すぐに表示されます。
String title = "sample title"
String text = "sample text";
Calendar target = Calendar.getInstance();
target.set( Calendar.HOUR_OF_DAY, model.getAlarmHour() );
target.set( Calendar.MINUTE, model.getAlarmMinute() );
target.set( Calendar.SECOND, 0 );
int icon = android.R.drawable.stat_notify_error;
String ns = context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(ns);
Intent notificationIntent = new Intent( context, WakeUpNotify.class );
PendingIntent contentIntent = PendingIntent.getActivity( context, 0, notificationIntent, 0);
Notification notification = new Notification(icon, text, target.getTimeInMillis() );
notification.setLatestEventInfo(appContext, title, text, contentIntent);
mNotificationManager.notify( notifyId, notification );