IntentService类没有在主ui线程上运行AsyncTask.必须从主线程调用方法execute,当前推断的线程是worker

Fin*_*ith 14 multithreading android android-asynctask

我最近发生了一个奇怪的问题.我正在调用名为NotificationService的服务,该服务扩展了IntentService类.现在在onHandleIntent(Intent intent)方法中,我调用异步任务.代码如下:

@Override
protected void onHandleIntent(Intent intent) {
    defPrefs = PreferenceManager.getDefaultSharedPreferences(this);
    //int fiveMinutes = 1000 * 60 * 5;
    //Setting an alarm to call AlarmScheduler service now. This alarm scheduler service will set next days alarm to show notifications
    //based on the weekly schedule as obtained from server.
    Intent i = new Intent(NotificationService.this, ScheduleAlarms.class);
    i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    //i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    PendingIntent pendingIntent = PendingIntent.getService(NotificationService.this, 0, i, PendingIntent.FLAG_CANCEL_CURRENT);
    AlarmManager alarmManager = (AlarmManager) NotificationService.this.getSystemService(Context.ALARM_SERVICE);
    alarmManager.set(AlarmManager.RTC, Calendar.getInstance().getTimeInMillis(), pendingIntent);//Use AlarmManager.INTERVAL_DAY instead of int number here.

    //Check if locally notifications are enabled by the user then only show notification depending on
    //if there are any latest notifications to be shown.
    if(defPrefs.getBoolean(getString(R.string.notifications),true)) {
        NotificationAsyncTask httpAsyncTask1 = new NotificationAsyncTask();
        httpAsyncTask1.mOnHttpResponseListener = new GetHomeResponse(intent);
        httpAsyncTask1.execute("http://" + HttpAsyncTask.IP_ADDRESS + "/v5/getResult");
    }else{
        Log.v("NotificationService","Disabled");
    }

}
Run Code Online (Sandbox Code Playgroud)

NotificationAsyncTask是此服务中定义的私有类.现在我收到错误方法执行必须从主线程调用,当前推断的线程是worker ..我不明白这个执行方法是如何在主线程上运行的?请帮忙.

Com*_*are 24

现在在onHandleIntent(Intent intent)方法中,我调用异步任务

onHandleIntent() 在后台线程上调用.

您无法AsyncTask从后台线程执行.

更重要的是,你不需要AsyncTask.只需拿走你的doInBackground()代码然后把它放入onHandleIntent().