我指的是android设计注意事项:AsyncTask vs Service (IntentService?)
根据讨论,AsyncTask 不适合,因为它与您的 Activity 紧密“绑定”
因此,我启动了一个Thread
(我假设 AsyncTask 和 Thread 属于同一类别),其中有一个无限运行循环并进行了以下测试。
- 我退出了我的应用程序,按住返回软键,直到我看到主屏幕。线程仍在运行。
- 我通过转到Manage apps -> App -> Force stop来杀死我的应用程序。线程已停止。
所以,我希望在我从 更改Thread
为之后,即使我退出或杀死我的应用程序Service
,我也会保持活力。Service
Intent intent = new Intent(this, SyncWithCloudService.class);
startService(intent);
public class SyncWithCloudService extends IntentService {
public SyncWithCloudService() {
super("SyncWithCloudService");
}
@Override
protected void onHandleIntent(Intent intent) {
int i = 0;
while (true) {
Log.i("CHEOK", "Service i is " + (i++));
try {
Thread.sleep(1000);
} catch (InterruptedException ex) {
Log.i("CHEOK", "", ex);
}
}
}
}
// Doesn't matter whether I use "android:process" or not.
<service
android:name="com.xxx.xml.SyncWithCloudService"
android:process=".my_process" >
</service>
然而,我的发现是,
- 我退出了我的应用程序,按住返回软键,直到我看到主屏幕。服务仍在运行。
- 我通过转到Manage apps -> App -> Force stop来杀死我的应用程序。服务已停止。
似乎 和 的行为Service
是Thread
相同的。那么,为什么我应该使用Service
而不是Thread
?有什么我错过的吗?我以为我的Service
假设会继续运行,即使我杀死了我的应用程序?