3
我有一個叫做show_notification()
的函數,當用戶點擊一個按鈕時我會調用它。問題在於,他不是在點擊[如下面的函數]時顯示通知,而是希望在特定情況下顯示此通知time= hours:mins
小時和分鐘是兩個具有我想要的時間值的整數[例如小時= 22分鐘= 40 ..意思是在22:40 [10:40 pm]發出這個通知]。順便說一下,這個報警應該每天同時重複一次。android:在特定時間顯示通知?
public void show_notification() {
CharSequence notify_msg="Don't foget!";
CharSequence title= "you ve been notified by My app";
CharSequence details= "It works!";
NotificationManager nm= (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
Notification notify= new Notification(android.R.drawable.stat_notify_more,
notify_msg,
System.currentTimeMillis());
Context mycontext= ActA.this;
Intent myintent= new Intent (mycontext, ActA.class);
PendingIntent pending= PendingIntent.getActivity(mycontext, 0, myintent, 0); ///0's are not applicable here
notify.setLatestEventInfo(mycontext, title, details, pending);
nm.notify(0, notify);
}
我希望你能詳細回答,因爲我是一個非常新的開發者。
你有鏈接到教程或例子嗎?謝謝:) – CSawy
http://android-er.blogspot.in/2010/10/simple-example-of-alarm-service-using.html - 你可以用通知取代烤麪包 –
還有幾個有趣的例子有趣的事情,你可以使用此頁面上的警報管理器。 –