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

android-如何更新 notification 進度條?

編輯:編程綜合問答
如何更新 notification 進度條?

在我的安卓應用程序中有一個 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 必須是唯一的。

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