在旋转和返回时恢复 MapView 的状态
Posted
技术标签:
【中文标题】在旋转和返回时恢复 MapView 的状态【英文标题】:Restoring MapView's state on rotate and on back 【发布时间】:2013-04-20 15:04:07 【问题描述】:背景
我有一个更大的应用程序,其中我遇到/遇到了新的 Google Maps API 的几个问题。我试图描述它in a different question,但因为它看起来太复杂了,我决定开始一个新项目,尽可能简单并尝试重现问题。就是这样。
情况
我正在使用Fragments
并想将MapView
放入其中。我不想使用MapFragment
。我准备的示例项目可能不是很漂亮,但我试图使其尽可能简单,并且它必须包含原始应用程序中的一些元素(再次简化)。
我有一个Activity
和我的自定义Fragment
,其中有MapView
,以编程方式添加。 Map
包含一些点/Markers
。单击Marker
后,将显示InfoWindow
,单击它会导致在内容中显示下一个Fragment
(带有replace()
函数)。
问题
我有两个问题:
当显示 Map
和 Markers
时,屏幕旋转会导致我的自定义 Class not found when unmarshalling
错误 MyMapPoint
类 - 我不知道为什么以及这意味着什么。
我点击Marker
,然后点击InfoWindow
。在此之后,我按下硬件后退按钮。现在我可以看到Map
但没有Markers
并且以0,0
为中心。
代码
主活动
public class MainActivity extends FragmentActivity
private ArrayList<MyMapPoint> mPoints = new ArrayList<MyMapPoint>();
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (savedInstanceState == null)
mPoints.add(new MyMapPoint(1, new LatLng(20, 10),
"test point", "description", null));
mPoints.add(new MyMapPoint(2, new LatLng(10, 20),
"test point 2", "second description", null));
Fragment fragment = MyMapFragment.newInstance(mPoints);
getSupportFragmentManager().beginTransaction()
.add(R.id.contentPane, fragment).commit();
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/contentPane"
android:layout_
android:layout_ />
map_fragment.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_
android:layout_
android:orientation="vertical" >
<com.google.android.gms.maps.MapView
xmlns:map="http://schemas.android.com/apk/res-auto"
android:id="@+id/map"
android:layout_
android:layout_ />
</LinearLayout>
我的地图片段
public class MyMapFragment extends Fragment implements
OnInfoWindowClickListener
public static final String KEY_POINTS = "points";
private MapView mMapView;
private GoogleMap mMap;
private HashMap<MyMapPoint, Marker> mPoints =
new HashMap<MyMapPoint, Marker>();
public static MyMapFragment newInstance(ArrayList<MyMapPoint> points)
MyMapFragment fragment = new MyMapFragment();
Bundle args = new Bundle();
args.putParcelableArrayList(KEY_POINTS, points);
fragment.setArguments(args);
return fragment;
@Override
public void onSaveInstanceState(Bundle outState)
super.onSaveInstanceState(outState);
mMapView.onSaveInstanceState(outState);
MyMapPoint[] points = mPoints.keySet().toArray(
new MyMapPoint[mPoints.size()]);
outState.putParcelableArray(KEY_POINTS, points);
@Override
public void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
if (savedInstanceState == null)
Bundle extras = getArguments();
if ((extras != null) && extras.containsKey(KEY_POINTS))
for (Parcelable pointP : extras.getParcelableArrayList(KEY_POINTS))
mPoints.put((MyMapPoint) pointP, null);
else
MyMapPoint[] points = (MyMapPoint[]) savedInstanceState
.getParcelableArray(KEY_POINTS);
for (MyMapPoint point : points)
mPoints.put(point, null);
@Override
public View onCreateView(LayoutInflater inflater,
ViewGroup container, Bundle savedInstanceState)
View layout = inflater.inflate(R.layout.map_fragment, container, false);
mMapView = (MapView) layout.findViewById(R.id.map);
return layout;
@Override
public void onActivityCreated(Bundle savedInstanceState)
super.onActivityCreated(savedInstanceState);
mMapView.onCreate(savedInstanceState);
setUpMapIfNeeded();
addMapPoints();
@Override
public void onPause()
mMapView.onPause();
super.onPause();
@Override
public void onResume()
super.onResume();
setUpMapIfNeeded();
mMapView.onResume();
@Override
public void onDestroy()
mMapView.onDestroy();
super.onDestroy();
public void onLowMemory()
super.onLowMemory();
mMapView.onLowMemory();
;
private void setUpMapIfNeeded()
if (mMap == null)
mMap = ((MapView) getView().findViewById(R.id.map)).getMap();
if (mMap != null)
setUpMap();
private void setUpMap()
mMap.setOnInfoWindowClickListener(this);
addMapPoints();
private void addMapPoints()
if (mMap != null)
HashMap<MyMapPoint, Marker> toAdd =
new HashMap<MyMapPoint, Marker>();
for (Entry<MyMapPoint, Marker> entry : mPoints.entrySet())
Marker marker = entry.getValue();
if (marker == null)
MyMapPoint point = entry.getKey();
marker = mMap.addMarker(point.getMarkerOptions());
toAdd.put(point, marker);
mPoints.putAll(toAdd);
@Override
public void onInfoWindowClick(Marker marker)
Fragment fragment = DetailsFragment.newInstance();
getActivity().getSupportFragmentManager().beginTransaction()
.replace(R.id.contentPane, fragment)
.addToBackStack(null).commit();
public static class MyMapPoint implements Parcelable
private static final int CONTENTS_DESCR = 1;
public int objectId;
public LatLng latLng;
public String title;
public String snippet;
public MyMapPoint(int oId, LatLng point,
String infoTitle, String infoSnippet, String infoImageUrl)
objectId = oId;
latLng = point;
title = infoTitle;
snippet = infoSnippet;
public MyMapPoint(Parcel in)
objectId = in.readInt();
latLng = in.readParcelable(LatLng.class.getClassLoader());
title = in.readString();
snippet = in.readString();
public MarkerOptions getMarkerOptions()
return new MarkerOptions().position(latLng)
.title(title).snippet(snippet);
@Override
public int describeContents()
return CONTENTS_DESCR;
@Override
public void writeToParcel(Parcel dest, int flags)
dest.writeInt(objectId);
dest.writeParcelable(latLng, 0);
dest.writeString(title);
dest.writeString(snippet);
public static final Parcelable.Creator<MyMapPoint> CREATOR =
new Parcelable.Creator<MyMapPoint>()
public MyMapPoint createFromParcel(Parcel in)
return new MyMapPoint(in);
public MyMapPoint[] newArray(int size)
return new MyMapPoint[size];
;
如果您需要查看任何其他文件,请告诉我。 Here你可以找到一个完整的项目,你只需要把你自己的Maps API KEY放在AndroidManifest.xml
文件中。
编辑
我设法使示例更加简单,并更新了上面的代码。
【问题讨论】:
【参考方案1】:这是我对第一个问题的解决方法:
似乎Map
正在尝试解包所有捆绑包,而不仅仅是当我调用mMap.onCreate(savedInstanceState)
时它自己的信息,如果我使用我的自定义Parcelable
类,它就会出现问题。对我有用的解决方案是在我使用它们后立即从 savedInstanceState
中删除我的额外内容 - 在我调用 Map 的 onCreate()
之前。我用savedInstanceState.remove(MY_KEY)
来做。我必须做的另一件事是调用mMap.onSaveInstanceState()
,然后在Fragment's
onSaveInstanceState(Bundle outState)
函数中将我自己的信息添加到outState
。
这是我处理第二个的方法:
我将示例项目简化为最基本的内容。我正在将原始Markers
添加到地图中,如果我将Fragment
替换为另一个地图,那么在单击“返回”后,我仍然得到“无效”地图。
于是我做了两件事:
-
将
CameraPosition
保存在onPause()
函数中以将其恢复到onResume()
在onPause()
中将mMap
设置为空,所以当Fragment
返回时,Markers
会再次由addMapPoints()
函数添加(我不得不稍微更改它,因为我正在保存和检查Markers
id)。
这里是代码示例:
private CameraPosition cp;
...
public void onPause()
mMapView.onPause();
super.onPause();
cp = mMap.getCameraPosition();
mMap = null;
...
public void onResume()
super.onResume();
setUpMapIfNeeded();
mMapView.onResume();
if (cp != null)
mMap.moveCamera(CameraUpdateFactory.newCameraPosition(cp));
cp = null;
要更新onResume()
中的相机位置,我必须手动初始化地图。我在setUpMap()
:
private void setUpMap()
try
MapsInitializer.initialize(getActivity());
catch (GooglePlayServicesNotAvailableException e)
mMap.setOnInfoWindowClickListener(this);
mMap.setOnMapLongClickListener(this);
addMapPoints();
我意识到这些不是真正的解决方案 - 只是覆盖,但这是我目前能做的最好的事情,项目必须继续。如果有人找到更清洁的修复程序,我会很感激让我知道它们。
【讨论】:
为您的回答干杯尝试解开整个 Bundle 的地图,我很久以前就实施了您的建议,但最近在我的 Fragment 中添加了ViewPager
,这又导致了 BadParcelableException
。原来ViewPager
的保存状态也无法解包,因为它来自支持库,所以我选择将地图状态复制到新的 Bundle 中,而不是删除我知道的所有包裹,我的答案在这里:@ 987654321@【参考方案2】:
来到这里寻找有关onSaveInstance
和NullPointerException
的任何提示。我尝试了各种解决方法,包括@Izydorr 提到的解决方法,但都没有运气。问题在于FragmentPagerAdapter
——ViewPager
的适配器,它托管了我嵌入MapView
s 的片段。将其更改为FragmentStatePagerAdapter
后,NPE 就消失了。呼!
【讨论】:
【参考方案3】:使用 GoogleMap.OnCameraChangeListener
实现您的片段/活动,并覆盖方法 onCameraChange
并在其中保存新的相机位置,并 onResume
使用
googleMap.animateCamera(CameraUpdateFactory.newCameraPosition(cameraPositionSaved));
【讨论】:
此接口现已弃用。见这里:***.com/questions/38727517/…以上是关于在旋转和返回时恢复 MapView 的状态的主要内容,如果未能解决你的问题,请参考以下文章
如何在 android 的 MapView 中更改地图控制器的位置?