Activity with ProgressBar -> Service -> AsyncTask for downloading - but how to update the progress?

后端 未结 3 1000
小蘑菇
小蘑菇 2021-02-03 16:32

this is the current state/situation: I have an Activity which binds a Service which creates AsyncTasks which downloads various web resources. That works well, but of course the

3条回答
  •  长情又很酷
    2021-02-03 17:02

    Have the Service notify the then-running Activity about the progress from onProgressUpdate(). That could be via a broadcast Intent, or via a callback object registered by the Activity (and unregistered when the Activity is destroyed, such as on a screen rotation).

提交回复
热议问题