我正在尝试实现委托模式以通知 UI 异步操作的过程。所以我有一个这样的界面:
public interface UpdateLibraryDelegate {
public void startDownloadingLibrary();
public void endDownloadingLibrary();
public void processingLibrary(int progress);
public void endProcessingLibrary();
}
我有一个活动:
public class HomeActivity implements UpdateLibraryDelegate{
protected void onCreate(Bundle savedInstanceState) {
...
Intent libraryIntent = new Intent(this, MyService.class);
/*Here is where the problem is*/
libraryIntent.putExtra(UPDATE_LIBRARY_DELEGATE, this);
...
}
/*Methods of the interface*/
...
/**/
}
问题显然是我不能按意图发送我的活动,因为它既不是可序列化的也不是可打包的。有没有办法用 Intent 发送活动?我想做的事情很愚蠢,有更合理的方法可以做到吗?我在Android上是全新的......
谢谢!