在我的安卓應用程序中有一個 Notification,並且 notification有一個進度條。
如果我更新 notification 的進度條的進度時,我是要傳遞 notification 的同一個實例呢,還是要傳遞 Notification 的一個新實例?
應該這樣:
mNotification = new Notification(..); // create in the constructor of my activity
getNotificationManager().notify(TAG, FILE_UPLOAD_ID, mNotification);
還是:
getNotificationManager().notify(TAG, FILE_UPLOAD_ID, new Notification(...) );
public void notify (String tag, int id, Notification notification) Since: API Level 5
在狀態欄發布一個通知。如果程序中已經有一個通知有相同的標簽和id,這個通知還沒有取消,就會被更新的信息代替。
參數標簽A 字符串標識這個通知,可能為空,給這個通知分配 id 標識符。在程序中 tag,id 必須是唯一的。