gpt4 book ai didi

android - IntentService 类未在主 ui 线程上运行 AsyncTask。方法execute必须从主线程调用,目前推断线程是worker

转载 作者:可可西里 更新时间:2023-11-01 18:59:31 32 4
gpt4 key购买 nike

我最近遇到了一个奇怪的问题。我正在调用一个名为 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");
}

}

其中 NotificationAsyncTask 是在此服务中定义的私有(private)类。现在我收到错误方法execute必须从主线程调用,目前推断线程是worker..不明白这个execute方法怎么没有运行在主线程上?请帮忙。

最佳答案

Now inside the onHandleIntent(Intent intent) method i making call to an async task

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

您不能从后台线程执行 AsyncTask

更重要的是,您不需要 AsyncTask。只需将您的 doInBackground() 代码放入 onHandleIntent() 即可。

关于android - IntentService 类未在主 ui 线程上运行 AsyncTask。方法execute必须从主线程调用,目前推断线程是worker,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31750269/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com