Closed renaudcerrato closed 11 years ago
Android bug. Also i'm haven't ability to modify standard gms library, not library issue.
That's probably because you're using a custom parcelable... Can it be avoided?
For now, I'm using the following workaround:
@Override
public void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
Bundle gmapstate = new Bundle();
mMapView.onSaveInstanceState(gmapstate);
outState.putParcelable("gmap_state", gmapstate);
Yes, i'm using a custom parcelable, and i have no way more for saving state of widgets. Android cannot find class in system classloader, gms doesn't provide a application-level classloader to
bpq.a(SourceFile:74)
You can submit bug in google support or devs list.
Using MapView (maps v2) in holoeverywhere fragments. The custom parcelable cannot be found onto the remote process when calling "mapview.onCreate(savedInstanceState)" :