我有一个服务正在多个活动中使用/绑定(我仔细编写了它,以便一个活动在另一个绑定之前取消绑定它,在 onPause/onResume 中)。但是,我注意到服务中的成员不会坚持....
活动一:
private void bindService() {
// Bind to QueueService
Intent queueIntent = new Intent(this, QueueService.class);
bindService(queueIntent, mConnection, Context.BIND_AUTO_CREATE);
}
...
bindService();
...
mService.addItems(downloads); // the initial test adds 16 of them
活动二:
bindService(); // a different one than activity 1
int dlSize = mService.getQueue().size(); // always returns 0 (wrong)
服务代码:
public class QueueService extends Service {
private ArrayList<DownloadItem> downloadItems = new ArrayList<DownloadItem();
// omitted binders, constructor, etc
public ArrayList<DownloadItem> addItems(ArrayList<DownloadItem> itemsToAdd) {
downloadItems.addAll(itemsToAdd);
return downloadItems;
}
public ArrayList<DownloadItem> getQueue() {
return downloadItems;
}
}
在更改一件事后——将服务的 downloadItems 变量变为静态变量——一切正常。但不得不这样做让我担心;我以前从未以这种方式使用过单例。这是使用其中之一的正确方法吗?