1
我在我的android應用程序中有一個Notification
。而這Notification
有一個進度條。如何更新通知
我的問題是:如果我更新了我的Notification
的進度條進度,我應該通過Notification
的SAME實例還是創建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(...));