use*_*728 15 android google-maps google-maps-android-api-2
运行稍微修改过的Google地图示例会引发BadParcelableExceptionGoogle地图代码.这个LatLng班是可以分配的,但却无法找到.谷歌地图代码似乎试图取消没有被它包围的对象.什么情况下的问题?
package com.example.mapdemo;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapView;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.MarkerOptions;
import android.os.Bundle;
public class RawMapViewDemoActivity extends android.support.v4.app.FragmentActivity {
private MapView mMapView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.raw_mapview_demo);
mMapView = (MapView) findViewById(R.id.map);
mMapView.onCreate(savedInstanceState);
}
@Override
public void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
mMapView.onSaveInstanceState(outState);
outState.putParcelable("marker", new LatLng(0, 0));
}
@Override
protected void onRestoreInstanceState(Bundle savedInstanceState) {
super.onRestoreInstanceState(savedInstanceState);
LatLng ll = savedInstanceState.getParcelable("marker");
}
}
Run Code Online (Sandbox Code Playgroud)
...
FATAL EXCEPTION: main
java.lang.RuntimeException: Unable to start activity
ComponentInfo{com.example.mapdemo/com.example.mapdemo.RawMapViewDemoActivity}:
android.os.BadParcelableException: ClassNotFoundException when unmarshalling:
com.google.android.gms.maps.model.LatLng
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1647)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1663)
at android.app.ActivityThread.handleRelaunchActivity(ActivityThread.java:2832)
at android.app.ActivityThread.access$1600(ActivityThread.java:117)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:935)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:130)
at android.app.ActivityThread.main(ActivityThread.java:3683)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:507)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
at dalvik.system.NativeStart.main(Native Method)
Caused by: android.os.BadParcelableException:
ClassNotFoundException when unmarshalling: com.google.android.gms.maps.model.LatLng
at android.os.Parcel.readParcelable(Parcel.java:1958)
at android.os.Parcel.readValue(Parcel.java:1846)
at android.os.Parcel.readMapInternal(Parcel.java:2083)
at android.os.Bundle.unparcel(Bundle.java:208)
at android.os.Bundle.getBundle(Bundle.java:1078)
at com.google.android.gms.maps.internal.MapStateHelper
.getParcelableFromMapStateBundle(MapStateHelper.java:41)
at maps.y.ae.a(Unknown Source)
at maps.y.bm.onCreate(Unknown Source)
at com.google.android.gms.maps.internal.IMapViewDelegate$Stub
.onTransact(IMapViewDelegate.java:66)
at android.os.Binder.transact(Binder.java:279)
at com.google.android.gms.maps.internal.IMapViewDelegate$a$a
.onCreate(Unknown Source)
at com.google.android.gms.maps.MapView$b.onCreate(Unknown Source)
at com.google.android.gms.internal.c$3.a(Unknown Source)
at com.google.android.gms.internal.i.b(Unknown Source)
at com.google.android.gms.maps.MapView$a.a(Unknown Source)
at com.google.android.gms.maps.MapView$a.a(Unknown Source)
at com.google.android.gms.internal.c.a(Unknown Source)
at com.google.android.gms.internal.c.onCreate(Unknown Source)
at com.google.android.gms.maps.MapView.onCreate(Unknown Source)
at com.example.mapdemo.RawMapViewDemoActivity
.onCreate(RawMapViewDemoActivity.java:40)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1611)
... 12 more
Run Code Online (Sandbox Code Playgroud)
dar*_*son 30
只是为了在这里添加现有的答案,我在调用之前已经从保存状态中删除了我的包裹mapView.onCreate并且它工作正常.
然而,在添加ViewPager到我的Fragment之后,我没有意识到BadParcelableException已经返回并且代码已经生成了.事实证明,ViewPager它也保存了它的状态,并且由于它是支持库的一部分,因此Google Map无法找到要取消它的类.
所以我选择反转过程,而不是从我知道的Bundle中删除Parcels,我选择创建一个新的Bundle,用于地图复制只有地图的状态.
private final static String BUNDLE_KEY_MAP_STATE = "mapData";
@Override
public void onSaveInstanceState(Bundle outState) {
// Save the map state to it's own bundle
Bundle mapState = new Bundle();
mapView.onSaveInstanceState(mapState);
// Put the map bundle in the main outState
outState.putBundle(BUNDLE_KEY_MAP_STATE, mapState);
super.onSaveInstanceState(outState);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_map, container, false);
mapView = (MapView) view.findViewById(R.id.mapView);
mapView.getMapAsync(this);
Bundle mapState = null;
if (savedInstanceState != null) {
// Load the map state bundle from the main savedInstanceState
mapState = savedInstanceState.getBundle(BUNDLE_KEY_MAP_STATE);
}
mapView.onCreate(mapState);
return view;
}
Run Code Online (Sandbox Code Playgroud)
Tim*_*tin 12
我尝试了前两个答案但没有成功,但我找到了另一种解决方法:
保存状态时,在将数据添加到Bundle之前,请小心转发MapView.onSaveInstanceState调用(您做得很好):
@Override
public void onSaveInstanceState(Bundle outState) {
// Forward the call BEFORE adding our LatLng array, else it will crash :
_mapView.onSaveInstanceState(outState);
// Put your Parcelable in the bundle:
outState.putParcelableArray("myLatLng", new LatLng(0, 0) );
}
Run Code Online (Sandbox Code Playgroud)
在onCreate/onRestore中恢复状态时,检查bundle是否为null,如果是,请获取您的parcel,然后在转发调用之前将其从bundle中删除:
@Override
public void onCreate(Bundle savedInstanceState) {
// If the bundle is not null, get your Parcelable :
LatLng myLatLng = null;
if(savedInstanceState != null) {
myLatLng = (LatLng) savedInstanceState.getParcelable("myLatLng");
// Remove your Parcelable from the bundle, else it will crash :
savedInstanceState.remove("myLatLng");
}
// Forward the call :
_mapView.onCreate(savedInstanceState);
setUpMapIfNeeded();
}
Run Code Online (Sandbox Code Playgroud)
我找到了一个解决方法(有点)。当它发生的地方就尝试第二次。它总是捕获异常,并且第二次问题似乎不会发生在这个地方。这对我有用。
try {
mapIntent.putExtra(Intents.EXTRA_LATLNG, new LatLng(
store.getLatitude(), store.getLongitude()));
} catch (BadParcelableException e) {
mapIntent.putExtra(Intents.EXTRA_LATLNG, new LatLng(
store.getLatitude(), store.getLongitude()));
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
5638 次 |
| 最近记录: |