9
我希望我的通知每天在中午12點運行。你如何用時間替換時間值?將通知設置爲特定時間
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
Notification notify = new Notification(R.drawable.icon,"Its Time to Eat",when);
Context context = GrubNOWActivity.this;
CharSequence title = "Its Time to Eat";
CharSequence details = "Click Here to Search for Restaurants";
Intent intent = new Intent(context,Search.class);
PendingIntent pending = PendingIntent.getActivity(context, 0, intent, 0);
notify.setLatestEventInfo(context, title, details, pending);
nm.notify(0,notify);
似乎已經做到了,謝謝! –
但是如何在特定時間設置它?假設我想在10Pm時設置它,我該怎麼做? – silverFoxA
如何將其設置爲特定的一天,例如星期一至星期五,現在是晚上12點? –