程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-Android通知消息Notification

android-Android通知消息Notification

編輯:編程綜合問答
Android通知消息Notification

Notification notification = new Notification();
notification.icon=iconId;
notification.tickerText=tickerText;
long time = System.currentTimeMillis();

Date d = new Date(time);

            notification.when=System.currentTimeMillis()+3600*10000000;

            PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, getIntent(), 0);
            notification.setLatestEventInfo(this, contentTitle, contentText, pendingIntent);
            //5步:使用notificationManager對象的notify方法 顯示Notification消息   需要制定 Notification的標識
            notificationManager.notify(notiId, notification);



                Notification的when參數不管設置成多少都是馬上就通知比如上面的代碼也是馬上通知,怎麼才能設置通知時間

最佳回答:


when不是通知產生的時間,是時間域顯示的。
如果要定時發,簡單的可以通過AlarmManager來發送,如果復雜的自己做定時任務

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved