在我的个人偏好屏幕,我想启动一个服务被点击的偏好之一时,从互联网上下载文件。 如果该服务已在运行(下载文件),那么服务应当停止(取消下载)。
public class Setting extends PreferenceActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
downloadPref.setOnPreferenceClickListener(new OnPreferenceClickListener() {
@Override
public boolean onPreferenceClick(Preference pref) {
if (DownloadService.isRunning) {
Setting.this.stopService(new Intent(Setting.this,
DownloadService.class));
} else {
Setting.this.startService(new Intent(Setting.this,
DownloadService.class));
}
return false;
}
});
}
}
服务类:
public class DownloadService extends IntentService {
public static final int DOWNLOAD_SUCCESS = 0;
public static final int DOWNLOAD_FAIL = 1;
public static final int DOWNLOAD_CANCELLED = 2;
public static final int SERVER_FAIL = 3;
public static boolean isRunning = false;
private int result;
public DownloadService() {
super("DownloadService");
}
@Override
public void onCreate() {
super.onCreate();
isRunning = true;
}
@Override
protected void onHandleIntent(Intent intent) {
if (NetworkStateUtils.isInternetConnected(getApplicationContext()))
result = downloadFiles(getApplicationContext());
}
@Override
public void onDestroy() {
super.onDestroy();
switch (result) {
case DOWNLOAD_SUCCESS:
Toast.makeText(getApplicationContext(), R.string.download_finished,
Toast.LENGTH_SHORT).show();
break;
case DOWNLOAD_CANCELLED:
Toast.makeText(getApplicationContext(), R.string.download_canceled,
Toast.LENGTH_SHORT).show();
break;
case DOWNLOAD_FAIL:
Toast.makeText(getApplicationContext(), R.string.download_failed,
Toast.LENGTH_SHORT).show();
break;
}
isRunning = false;
}
}
这项服务是为了运行,直到下载完毕。 该功能downloadFiles()
不使用AsyncTask
。 它保存HttpURLConnection
与FileOutputStream
直接。
该服务正确启动,当我点击偏好。 现在的问题是,当我点击停止与服务stopService()
DownloadService
引发onDestroy()
马上; 然而,根据记录, onHandleIntent()
仍在运行becasue我仍然能看到的HTTP请求不断。 这是因为Service
运行在一个线程本身,还是我做错了什么? 我怎样才能确保一切onHandleIntent()
立即停止(或者至少能停止)时stopService()
被调用?