Notification
Android アプリケーションに があります。そして、これ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(...) );