我想实现以下行为,但我不确定如何:
1. User start an activity
2. Activity starts an AsyncTask
3. After initiating the AsyncTask,the control is transferred to another activity.
4. Now,when the AsynTask finishes its work,the 2nd activity should get to know that AsyncTask has completed its working in the previous activity.
我不知道如何实现该功能。I know how to use AsyncTask
但我不知道如何通知其父活动以外的任何活动关于其工作的完成。请帮助我。提前致谢。
我想这样做是因为在第一个活动中我想在 AsyncTask 中开始一些工作,然后将控件转移到第二个活动但 AsyncTask 仍在运行。当 AsyncTask 完成其功能时,我想通知第二个活动它然后想在第二个活动中执行一些功能。