HashMap 将 onSaveInstanceState 从 Fragment 存储和恢复到另一个 Activity
Posted
技术标签:
【中文标题】HashMap 将 onSaveInstanceState 从 Fragment 存储和恢复到另一个 Activity【英文标题】:HashMap Store and Restore onSaveInstanceState from Fragment to another Activity 【发布时间】:2016-12-20 19:21:48 【问题描述】:需要恢复存储在HashMap<String, Marker> markers;
中的标记
当从另一个活动打开片段时。
这是我尝试过的:
HashMap<String, Marker> markers;
//..
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
//..
this.markers = new HashMap<String, Marker>();
// Restoring the markers on configuration changes
if (savedInstanceState != null)
if (savedInstanceState.containsKey("markers"))
markers = (HashMap<String, Marker>) savedInstanceState.getSerializable("markers");
if (markers != null)
for (String key : markers.keySet())
Location location =
new Location(markers.get(key).getPosition().latitude, markers.get(key).getPosition().longitude);
addMarker(key, location);
return rootView;
public void addMarker(String key, Location location)
//if (!key.equals(strUserID))
Marker marker = this.mGoogleMap.addMarker(new MarkerOptions()
.position(new LatLng(location.latitude, location.longitude))
.icon(BitmapDescriptorFactory.defaultMarker()));
//...
@Override
public void onSaveInstanceState(Bundle outState)
super.onSaveInstanceState(outState);
outState.putSerializable("markers", markers);
当片段从另一个活动的暂停状态恢复时,我想恢复片段上的标记。 例如:Activity A 包含 Fragment FA,Activity B 在前台被调用,然后在后台再次打开 Fragment FA:
Activity A (Fragment FA)(Markers shown on map and should store hashmap `onSaveInstanceState(Bundle outState)` when while activity B is called) ---> Activity B ---> (On Back-pressed restore markers from hashmap `if (savedInstanceState != null)`) Fragment FA.
【问题讨论】:
能否请您更准确地说明问题? @NirDuan 我想做类似活动 A(Fragment FA)的事情(标记显示在地图上,并且在调用活动 B 时应该存储哈希图onSaveInstanceState(Bundle outState)
)---> 活动 B --- > (后按)在片段 FA 恢复 if (savedInstanceState != null)
上再次恢复 hashmap 标记。
【参考方案1】:
请注意,如果:
当您切换到B
时,A
不会调用 finish
A
配置为保留在后台堆栈中
FA
配置为保留在后台堆栈中
然后当你切换到B
然后按下返回时,A
和FA
将从后台弹出,这意味着你让它们处于与切换到@987654329之前完全相同的状态@。在这种情况下,您无需执行任何操作 - 您的 HashMap
仍然有效并包含正确的内容。
但是,如果系统需要内存,它可能会决定销毁“回栈”Activity
和 Fragment
实例,在这种情况下,它会在销毁之前调用 onSaveInstanceState
。如果你现在返回,那么A
和FA
将被重新创建,并会收到包含已保存状态的savedInstanceState
参数。只需使用它来恢复您想要的任何内容。
实际上,(假设Marker
类实现正确)我认为您的代码很好,除了onCreateView
中的一行:
this.markers = new HashMap<String, Marker>();
如果FA
只是从后台堆栈中弹出(而不是重新创建),则此行会导致您丢失HashMap
的当前状态。我建议你把这行放在onCreate
,或者简单地在声明时初始化这个映射:
private HashMap<String, Marker> markers = new HashMap<>();
【讨论】:
@Vasilily 谢谢,我在声明本身上初始化了 HashMap,它运行良好,而且代码也有错误,正在清除片段的 hashmap onStop()。 @Bhushan,很高兴它帮助了你。如果这完全解决了您的问题,请接受答案以上是关于HashMap 将 onSaveInstanceState 从 Fragment 存储和恢复到另一个 Activity的主要内容,如果未能解决你的问题,请参考以下文章