public void onMessageReceived(RemoteMessage remoteMessage) {
try {
String type=remoteMessage.getData().get("type");
if(type.equals("1001")) {
CommonClass common = new CommonClass(getApplication());
CommonClass.MyTaskSendLog.execute(getApplicationContext(), DeviceDetails,lines);
}
} catch (Exception ex) {
}
}
此代码给出错误:
必须从当前推断的主线程中调用方法execute
线程是工人
最佳答案
我想您的方法正在使用中。
要访问服务中的UI线程(主线程),您必须创建一个处理程序并在其中调用方法,如下所示:
if(type.equals("1001")) {
Handler handler = new Handler(Looper.getMainLooper());
handler.post(new Runnable() {
public void run() {
CommonClass common = new CommonClass(getApplication());
CommonClass.MyTaskSendLog.execute(getApplicationContext(), DeviceDetails,lines);
}
});
}
您可以在服务的
onCreate
中创建Handler。