0

以下は、内部と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 );
4

1 に答える 1

0

がいつ表示されるかはtarget制御できません。このアイテムの通知ドロワー エントリに表示される時刻を決定するだけです。Notification

于 2012-04-21T15:11:36.680 に答える