我在另一个片段中有一个地图片段。这之前有用,但我认为在更新了Google Play服务库之后搞砸了。怎么了? fragment_map.xml:
<fragment
android:name="com.google.android.gms.maps.SupportMapFragment"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent" />
MapFragment:
GoogleMap map;
private static View view;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
{
if (view != null) {
ViewGroup parent = (ViewGroup) view.getParent();
if (parent != null)
parent.removeView(view);
}
try {
view = inflater.inflate(R.layout.fragment_map, container, false);
map = ((SupportMapFragment) getActivity()
.getSupportFragmentManager()
.findFragmentById(R.id.map))
.getMap(); // NullPointerException at this line
map.getUiSettings().setAllGesturesEnabled(true);
map.getUiSettings().setMyLocationButtonEnabled(false);
map.getUiSettings().setZoomControlsEnabled(true);
} catch (InflateException e) {
/* map is already there, just return view as it is */
}
return view;
}
答案 0 :(得分:21)
我不得不改变
getActivity().getSupportFragmentManager()
到
getChildFragmentManager()
让它运作起来。不知道为什么它几天前工作得很好。
答案 1 :(得分:2)
注意:当布局包含片段时,您无法将布局扩展为片段。只有动态添加到片段时才支持嵌套片段。
答案 2 :(得分:0)
在onCreateView中,你不应该这样做。在官方文档中使用建议的方法进行片段间通信。在这里,我认为您的问题与时间有关。并非所有片段都是同步创建或管理的。另外,我不确定你是否可以从onCreateView()调用getActivity() - 因为片段只有在onCreateView()之后才能获得onActivityCreated()回调。