gpt4 book ai didi

java.lang.IllegalStateException : Not on the main thread 错误

转载 作者:行者123 更新时间:2023-11-29 20:36:59 26 4
gpt4 key购买 nike

我试图从 FragmentActivity map 中的 Goolge map 中删除标记,当时服务器端的制造商表中没有可用数据,数据对象也为空,但我收到以下错误。我该如何解决?

错误:

07-12 20:53:05.697: E/AndroidRuntime(26364): FATAL EXCEPTION: IntentService[IntentService]
07-12 20:53:05.697: E/AndroidRuntime(26364): Process: com.bustracker, PID: 26364
07-12 20:53:05.697: E/AndroidRuntime(26364): java.lang.IllegalStateException: Not on the main thread
07-12 20:53:05.697: E/AndroidRuntime(26364): at com.google.l.a.ce.b(Unknown Source)
07-12 20:53:05.697: E/AndroidRuntime(26364): at com.google.maps.api.android.lib6.d.ct.a(Unknown Source)
07-12 20:53:05.697: E/AndroidRuntime(26364): at com.google.maps.api.android.lib6.d.aq.a(Unknown Source)
07-12 20:53:05.697: E/AndroidRuntime(26364): at com.google.android.gms.maps.model.internal.t.onTransact(SourceFile:51)
07-12 20:53:05.697: E/AndroidRuntime(26364): at android.os.Binder.transact(Binder.java:380)
07-12 20:53:05.697: E/AndroidRuntime(26364): at com.google.android.gms.maps.model.internal.zzi$zza$zza.remove(Unknown Source)
07-12 20:53:05.697: E/AndroidRuntime(26364): at com.google.android.gms.maps.model.Marker.remove(Unknown Source)
07-12 20:53:05.697: E/AndroidRuntime(26364): at com.bustracker.GetLLRD.onHandleIntent(GetLLRD.java:120)
07-12 20:53:05.697: E/AndroidRuntime(26364): at android.app.IntentService$ServiceHandler.handleMessage(IntentService.java:65)
07-12 20:53:05.697: E/AndroidRuntime(26364): at android.os.Handler.dispatchMessage(Handler.java:102)
07-12 20:53:05.697: E/AndroidRuntime(26364): at android.os.Looper.loop(Looper.java:145)
07-12 20:53:05.697: E/AndroidRuntime(26364): at android.os.HandlerThread.run(HandlerThread.java:61)

GetLLRD IntentService 类中的 onHandleIntent 方法:

protected void onHandleIntent(Intent intent) {

if (data != null && !data.isEmpty()) {
Intent intent1 = new Intent(this, Map.class);
intent1.putExtra("list_data", data);
intent1.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
| Intent.FLAG_ACTIVITY_SINGLE_TOP);
startActivity(intent1);

} else if (Map.markerMap != null
&& !Map.markerMap.isEmpty()) {

Iterator<HashMap.Entry<Integer, Marker>> it = Map.markerMap
.entrySet().iterator();
while (it.hasNext()) {
HashMap.Entry<Integer, Marker> entery = it
.next();
int key = entery.getKey();
Map.marker = Map.markerMap.get(key);
System.out.println("test marker " + Map.marker );
//Line 120.
Map.marker .remove();
Map.markerMap.remove(key);

// Marker value = entery.getValue();
}
}

map fragment Activity :

public class Map extends FragmentActivity implements OnMapReadyCallback {

GoogleMap map;
static HashMap<Integer, Marker> markerMap = new HashMap<Integer, Marker>();
static Marker marker = null;

...
}

最佳答案

异常的快速修复是将 map 更新放在 Runnable 中以在主线程上执行(下面的代码)。然而,问题的真正答案是您需要重新考虑您的设计。 IntentService 中的代码在 Activity 中使用静态数据是不安全的。使用 IntentService 的原因是什么? map 更新必须在主线程上运行。 IntentService 的目的之一是执行不能在主线程上完成的操作,并且需要后台线程。当包含需要主线程的代码时,为什么要使用 IntentService

    new Handler(Looper.getMainLooper()).post(new Runnable() {
@Override
public void run() {
Iterator<HashMap.Entry<Integer, Marker>> it = Map.markerMap
.entrySet().iterator();
while (it.hasNext()) {
HashMap.Entry<Integer, Marker> entery = it
.next();
int key = entery.getKey();
Map.marker = Map.markerMap.get(key);
System.out.println("test marker " + Map.marker );
//Line 120.
Map.marker.remove();
// Remove from map using iterator
it.remove();

// Marker value = entery.getValue();
}
}
});

关于java.lang.IllegalStateException : Not on the main thread 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31372451/

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